redisgetset如何防止多线程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了redisgetset如何防止多线程相关的知识,希望对你有一定的参考价值。
参考技术A 1.将并行操作转化成串行操作,常用的实现方式:a.加锁,使临界区资源,只能有一个线程/进程可以访问。
b.执行业务逻辑的工作线程只分配一个,这也可以从根本上防止并发问题的产生。
2.基于操作系统提供给上层应用的原子操作能力,实现"CAS"的原子操作。
以上方案各有优劣,都有各自的使用场景,这里我们不做过多比较。其实工作遇到的问题,在一些开源软件中也会遇到,在一些比较著名开源软件中又是如何解决线程安全问题呢?或者能从中学到一些知识
WinForm 多线程+委托来防止界面假死
参考: http://www.cnblogs.com/xpvincent/archive/2013/08/19/3268001.html
当有大量数据需要计算、显示在界面或者调用sleep函数时,容易导致界面卡死,可以采用多线程加委托的方法解决;
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Threading; namespace WindowsFormsApplication3 { public partial class Form1 : Form { DataTable table; int currentIndex = 0; int max = 10000; public Form1() { InitializeComponent(); } private void button1_Click(object sender, EventArgs e) { buttonOK.Enabled = false; Thread thread = new Thread(new ThreadStart(LoadData)); thread.IsBackground = true; thread.Start(); progressBar1.Minimum = 0; progressBar1.Maximum = max; } private void LoadData() { SetLabelText("数据加载中..."); currentIndex = 0; table = new DataTable(); table.Columns.Add("id"); table.Columns.Add("name"); table.Columns.Add("age"); while (currentIndex < max) { SetLabelText(string.Format("当前行:{0},剩余量:{1},完成比例:{2}%", currentIndex, max - currentIndex, (Convert.ToDecimal(currentIndex) / Convert.ToDecimal(max) * 100).ToString())); SetPbValue(currentIndex); DataRow dr = table.NewRow(); dr["id"] = currentIndex; dr["name"] = "张三"; dr["age"] = currentIndex + 5; table.Rows.Add(dr); currentIndex++; } SetDgvDataSource(table); SetLabelText("数据加载完成"); this.BeginInvoke(new MethodInvoker(delegate() { buttonOK.Enabled = true; })); } delegate void labDelegate(string str); private void SetLabelText(string str) { if (textBox1.InvokeRequired) { Invoke(new labDelegate(SetLabelText), new string[] { str }); } else { textBox1.Text = str; } } delegate void dgvDelegate(DataTable table); private void SetDgvDataSource(DataTable table) { if (dataGridView1.InvokeRequired) { Invoke(new dgvDelegate(SetDgvDataSource), new object[] { table }); } else { dataGridView1.DataSource = table; } } private delegate void pbDelegate(int value); private void SetPbValue(int value) { if (progressBar1.InvokeRequired) { Invoke(new pbDelegate(SetPbValue), new object[] { value }); } else { progressBar1.Value = value; } } } }
以上是关于redisgetset如何防止多线程的主要内容,如果未能解决你的问题,请参考以下文章