Question

What is the best approach to implement distributed caching with .NET?

Edit: I was looking for a general caching schema for internal and external applications

Was it helpful?

Solution

There is also NCache as another tool in addition to Velocity and memcached ports. As for strategies you will need to think about what @Unsliced is talking about because the strategy is different from the tool.

OTHER TIPS

We are huge fans of ScaleOut StateServer. In our tests, it was 4x faster than MemcacheDotNet and almost 2x faster than Enyim, with a lower memory footprint. It was well worth the money (the others are free).

Obviously, your mileage my vary, as every caching scenario is different, but I would definitely recommend kicking the tires on StateServer.

You should take a look at memcached. It can run on as many nodes as you want/need. There are at least two .Net clients available: here and here.

In the near future it will be Velocity. This is essentially a .Net implementation similar to Tangosol/Oracle's Coherence.

maybe you should check Shared Cache (http://www.sharedcache.com || http://sharedcache.codeplex.com) - it fast, free and open source.

regards, roni

What are you caching (and why)? How widely are you planning on distributing the cache? On a LAN, on a (private) WAN, over the whole interweb?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top