Memcached,分布式缓存介绍:http://blog.sina.com.cn/s/blog_493a845501013ei0.html(原文:http://wenku.baidu.com/view/8686d46c7e21af45b307a8c3.html)
Memcached 之 .NET(C#)实例分析: http://www.cnblogs.com/Caceolod/articles/1710342.html
使用Memcached提高.NET应用程序的性能: http://zhoufoxcn.blog.51cto.com/792419/528212/
.NET版本的Memcached客户端程序,的Enyim Memcached,可以到https://github.com/enyim/EnyimMemcached/下载最新的版本。
MyCache 是一个为 ASP.NET 应用开发的分布式缓存系统,基于 WCF 和 微软缓存应用块 开发。
相关文章:http://www.codeproject.com/Articles/134784/MyCache-Distributed-caching-engine-for-an-ASP-NET
http://www.codeproject.com/Articles/136475/MyCache-Distributed-caching-engine-for-an-ASP-NET
另附:Cache Manager,CacheManager is a common interface and abstraction layer for caching. It supports various cache providers / clients and includes advanced features. https://cachemanager.codeplex.com/
class Program { static void Main(string[] args) { var cache = CacheFactory.FromConfiguration<object>("myCache"); cache.Add("key", "value"); var value = cache.Get("key"); } }https://www.nuget.org/packages/CacheManager.Core
项目地址:https://github.com/enyim/EnyimMemcached