memcached for .net on windows

memcached for windows
http://www.cnblogs.com/dudu/archive/2009/07/19/1526407.html
http://www.cnblogs.com/milo_yu/archive/2010/11/08/1871556.html
http://www.cnblogs.com/hsapphire/archive/2009/12/25/1632179.html

一、下载Memercached For Windows 服务器端

下载地址:http://www.jb51.net/softs/44843.html
官网:http://memcached.org/
1 解压到指定目录,如:C:Memcachedmemcached-win32-1.4.4-14。
2 用cmd打开命令窗口,转到解压的目录,输入 “memcached.exe -d install”。
3 启动一下 memcached.exe -d start
4 测试一下 telnet localhost 11211


二 .NET memcached client library 客户端
下载文件:https://sourceforge.net/projects/memcacheddotnet/

里面有.net1.1 和 .net2.0的两种版本 还有一个不错的例子。

三 应用

1 将Commons.dll,ICSharpCode.SharpZipLib.dll,log4net.dll,Memcached.ClientLibrary.dll 等放到bin目录
2 引用Memcached.ClientLibrary.dll
3 代码

下载livevent:
http://libevent.org/

原文地址:https://www.cnblogs.com/dasydong/p/4079524.html