苏泽湛 发表于 2015-11-18 15:18:08

ASP.NET的分布式缓存介绍,MyCache ,Memcached ,CacheManager

  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.iyunv.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>(&quot;myCache&quot;);
cache.Add(&quot;key&quot;, &quot;value&quot;);
var value = cache.Get(&quot;key&quot;);
}
}https://www.nuget.org/packages/CacheManager.Core

https://www.nuget.org/packages/CacheManager.SystemRuntimeCaching/

https://www.nuget.org/packages/CacheManager.AppFabricCache/

https://www.nuget.org/packages/CacheManager.WindowsAzureCaching/

https://www.nuget.org/packages/CacheManager.Memcached/

https://www.nuget.org/packages/CacheManager.Web/






EnyimMemcached:
  项目地址:https://github.com/enyim/EnyimMemcached
  


  

版权声明:本文为博主原创文章,未经博主允许不得转载。
页: [1]
查看完整版本: ASP.NET的分布式缓存介绍,MyCache ,Memcached ,CacheManager