Memcached Best Library [closed]

2019-02-11 05:35发布

Can anyone tell me the best library in C# for memcache and also a little help required.

Thanks

4条回答
对你真心纯属浪费
2楼-- · 2019-02-11 06:15

NCache is a commercial alternative which one of my previous employers used for a distributed .NET web service layer.

查看更多
ゆ 、 Hurt°
3楼-- · 2019-02-11 06:20

What about SharedCache? Hope this helps!

查看更多
smile是对你的礼貌
4楼-- · 2019-02-11 06:22

I wrote a library for this. Big caveat though: it's only for RAM caching. It should NOT be used with distributed apps as each node would not be able to connect to the cache. I wrote it to overcome Memcached's 1 MB limit.

http://procbits.com/2011/01/21/memcached-alternative-for-c-net/

查看更多
成全新的幸福
5楼-- · 2019-02-11 06:36

I have a Open source C# caching providers for a number of clients including Memcached at:

http://code.google.com/p/servicestack/wiki/Caching

The memcached client which we've been using in production for over a year uses enyim's memcached client underneath it's BSD licenced so feel free to use it, source available here.

I should also mention that Marc Gravel (2nd on StackOverflow) has embedded protobuf-net with enyim's memcache client as well, details available on his blog:

http://marcgravell.blogspot.com/2010/01/distributed-caching-with-protobuf-net.html

查看更多
登录 后发表回答