Document
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 133 下一页
摘要: Redis的主从复制功能非常强大,一个master可以拥有多个slave,而一个slave又可以拥有多个slave,如此下去,形成了强大的多级服务器集群架构。下面我演示下怎样在多台服务器上进行Redis数据主从复制。这里我假设有两台服务器,一台是Windows操作系统(局域网IP:192.168.3 阅读全文
posted @ 2016-07-01 16:06 从未被超越 阅读(915) 评论(0) 推荐(0) 编辑
摘要: 最近正在研究Nginx,Nginx作为反向代理服务器,可以对Web服务器提供加速,并且具有负载均衡的功能。 首先我要在官网下载Nginx(http://nginx.org/en/download.html),目前最新稳定的版本为1.0版本,Linux和Windows版本我都下下来了,在两台服务器上做 阅读全文
posted @ 2016-07-01 16:04 从未被超越 阅读(402) 评论(0) 推荐(0) 编辑
摘要: C#中的BackgroundWorker控件 Keywords: C# .NET BackgroundWorkerSource: http://txw1958.cnblogs.com/ BackgroundWorker是.NET Framework 里用来执行多线程任务的控件,它允许开发人员在一个单 阅读全文
posted @ 2016-06-29 11:46 从未被超越 阅读(1396) 评论(0) 推荐(1) 编辑
摘要: C#中的线程(三)多线程 Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958 阅读全文
posted @ 2016-06-29 11:45 从未被超越 阅读(1266) 评论(0) 推荐(0) 编辑
摘要: C#中的线程(四)高级话题 Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw195 阅读全文
posted @ 2016-06-29 11:45 从未被超越 阅读(747) 评论(0) 推荐(0) 编辑
摘要: C#中的线程(一)入门 Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw1958/ 阅读全文
posted @ 2016-06-29 11:44 从未被超越 阅读(238) 评论(0) 推荐(0) 编辑
摘要: C#中的线程(二)线程同步 Keywords:C# 线程Source:http://www.albahari.com/threading/Author: Joe AlbahariTranslator: Swanky WuPublished: http://www.cnblogs.com/txw195 阅读全文
posted @ 2016-06-29 11:43 从未被超越 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 官网:http://www.lodop.net/demo.html Lodop、C-Lodop使用说明及样例 Lodop(标音:劳道谱,俗称:露肚皮)是专业WEB控件,用它既可裁剪输出页面内容,又可用程序代码直接实现 复杂打印。控件功能强大,却简单易用,所有调用如同JavaScript扩展语句,主要 阅读全文
posted @ 2016-06-28 11:41 从未被超越 阅读(1043) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Threading; namespace ConsoleApplication1 { class Class1 { //声明委托 public delegate void AsyncEventHandler(); //异步方法 void Even 阅读全文
posted @ 2016-06-27 09:19 从未被超越 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 1 、 查询 Student 表中的所有记录的 Sname 、 Ssex 和 Class 列。 select sname,ssex,class from student Linq: from s in Students select new { s.SNAME, s.SSEX, s.CLASS }L 阅读全文
posted @ 2016-06-27 09:17 从未被超越 阅读(863) 评论(0) 推荐(0) 编辑
上一页 1 ··· 107 108 109 110 111 112 113 114 115 ··· 133 下一页