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

111 篇文章 0 订阅

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://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


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值