Document
上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 132 下一页
摘要: 概念 redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)和zset(有序集合)。这些数据类型都支持push/pop、add/remove及取交集并集和差集及更丰富的操作,而且这些操作都 阅读全文
posted @ 2016-07-01 16:07 从未被超越 阅读(427) 评论(0) 推荐(0) 编辑
摘要: Redis的主从复制功能非常强大,一个master可以拥有多个slave,而一个slave又可以拥有多个slave,如此下去,形成了强大的多级服务器集群架构。下面我演示下怎样在多台服务器上进行Redis数据主从复制。这里我假设有两台服务器,一台是Windows操作系统(局域网IP:192.168.3 阅读全文
posted @ 2016-07-01 16:06 从未被超越 阅读(908) 评论(0) 推荐(0) 编辑
摘要: 最近正在研究Nginx,Nginx作为反向代理服务器,可以对Web服务器提供加速,并且具有负载均衡的功能。 首先我要在官网下载Nginx(http://nginx.org/en/download.html),目前最新稳定的版本为1.0版本,Linux和Windows版本我都下下来了,在两台服务器上做 阅读全文
posted @ 2016-07-01 16:04 从未被超越 阅读(400) 评论(0) 推荐(0) 编辑
摘要: C#中的BackgroundWorker控件 Keywords: C# .NET BackgroundWorkerSource: http://txw1958.cnblogs.com/ BackgroundWorker是.NET Framework 里用来执行多线程任务的控件,它允许开发人员在一个单 阅读全文
posted @ 2016-06-29 11:46 从未被超越 阅读(1393) 评论(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 从未被超越 阅读(1264) 评论(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 从未被超越 阅读(740) 评论(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 从未被超越 阅读(235) 评论(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 从未被超越 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 官网:http://www.lodop.net/demo.html Lodop、C-Lodop使用说明及样例 Lodop(标音:劳道谱,俗称:露肚皮)是专业WEB控件,用它既可裁剪输出页面内容,又可用程序代码直接实现 复杂打印。控件功能强大,却简单易用,所有调用如同JavaScript扩展语句,主要 阅读全文
posted @ 2016-06-28 11:41 从未被超越 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Threading; namespace ConsoleApplication1 { class Class1 { //声明委托 public delegate void AsyncEventHandler(); //异步方法 void Even 阅读全文
posted @ 2016-06-27 09:19 从未被超越 阅读(256) 评论(0) 推荐(0) 编辑
上一页 1 ··· 106 107 108 109 110 111 112 113 114 ··· 132 下一页