Hannoun Yassir
Hannoun Yassir

Reputation: 21192

is there a Memcached equivalent written in c#?

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

Upvotes: 5

Views: 650

Answers (4)

mfeingold
mfeingold

Reputation: 7154

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

Upvotes: 2

PHeiberg
PHeiberg

Reputation: 29811

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

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

Upvotes: 6

Jim Ferrans
Jim Ferrans

Reputation: 31012

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

Upvotes: 1

rossoft
rossoft

Reputation: 2182

This one is open source:

http://www.codeplex.com/SharedCache

Upvotes: 4

Related Questions