vote up 4 vote down star
3

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

flag

Are you looking for a distributed in-memory cache written in C#, or for a C# client API to interact with memcached. – Jim Ferrans Nov 7 at 15:21
@jim : yes i'm looking for a distributed in-memory cache written in C# i know about the api for memcached – Yassir Nov 7 at 15:26

4 Answers

vote up 4 vote down check

This one is open source:

http://www.codeplex.com/SharedCache

link|flag
note this is not compatible with memcached (if that's what Yassir meant by "equivalent") – zvolkov Nov 7 at 15:13
1  
@zvolkov: I suspect that Yassir meant "equivalent" when using the word "equivalent" ;) – AnthonyWJones Nov 7 at 15:16
@Anthony: actually i meant it :) i want a distributed in-memory cache system written in managed code – Yassir Nov 7 at 15:31
vote up 6 vote down

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

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

link|flag
vote up 2 vote down

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

link|flag
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.