tags:

views:

216

answers:

4

is there a Memcached equivalent written in c# ? open source maybe ?

+4  A: 

This one is open source:

http://www.codeplex.com/SharedCache

rossoft
note this is not compatible with memcached (if that's what Yassir meant by "equivalent")
zvolkov
@zvolkov: I suspect that Yassir meant "equivalent" when using the word "equivalent" ;)
AnthonyWJones
@Anthony: actually i meant it :) i want a distributed in-memory cache system written in managed code
Yassir
+1  A: 

If you just need to invoke memcached itself from C#, check out this list of clients.

Jim Ferrans
+6  A: 

There is Microsoft's upcoming distributed caching framework code named Velocity

I don't know how it will be licensed when released.

PHeiberg
+2  A: 

We are using MemCached in our .net applications and so far we are pretty happy. As to Velocity we considered it as an option. It is supposed to be much more powerful than memcached, but we decided against using it because it is too new (read potentially unstable), and also because the licensing of the released version is unknown at this time

mfeingold