David Robbins
David Robbins

Reputation: 10046

Is there a port of memcache to .Net?

I am interested if there is a port for the server implementation.

Upvotes: 25

Views: 14853

Answers (6)

TheBlueSky
TheBlueSky

Reputation: 5948

There is no official support for windows builds. Check this link: https://github.com/memcached/memcached/wiki/Install

For the clients, check this link: https://github.com/memcached/memcached/wiki/Clients

Hope that helps.

Upvotes: 6

Brent Matzelle
Brent Matzelle

Reputation: 4093

If you're interested in running a memcached client on Windows then there are two additional open source servers that can do the job. Both implement the standard memcached server protocol and are written in Java so they run on Windows.

Upvotes: 1

David P
David P

Reputation: 3634

Windows Server ports:

Memcached .NET Client ports:

Upvotes: 22

Pure.Krome
Pure.Krome

Reputation: 87087

Awesome port that's found on Codeplex :) check it out!

Upvotes: 1

appaquet
appaquet

Reputation: 94

And you might also want to check indeXus.net wich is implemented in c# (server and api)

We were also using BeIt as a memcached client port since we had problem with enyim.

Upvotes: 1

Ben R
Ben R

Reputation: 431

And you might want to check our Velocity - Microsoft's distributed cache.

Upvotes: 0

Related Questions