Cache Server for .NET (Memcached Example)

I am looking for a cache server for .NET. What can you offer? As I know, memcached has a provider for .net. Is this enough for use in .net in production?

+7
source share
6 answers

AppFabric is another popular Microsoft solution.

+8
source

If you want to run the cache server on Linux, you can use Redis and use the BookSleeve library from .NET, this is what StackOverflow uses

http://code.google.com/p/booksleeve/

+5
source

Scale Out State Server is a great solution. This is not free, but for large-scale applications , this is one of the best options we have found.

NCache is another option, although I have no experience with it.

For the enterprise (and budget) scale of Oracle Coherence . It works very well, although it is very expensive.

Here is another question with some information that may or may not be useful:
Caching solutions

+3
source

Membrane is very useful for production, perhaps the enyim provider is best .

Couchbase provides good web ui and easy memcached installation on windows. Free if on a single server. It is great to be able to control your cache instance.

They paid for solutions, but also for their own server.

AppFabric, as mentioned, is another obvious candidate, but not as mature as memcached. AppFabric is an application server and can also provide distributed caching, e.g. membase

+2
source

See the Top Caching Libraries for .NET post for several options, including both free and commercial. The choice will depend on your actual need.

+1
source

although the numbers of third-party caching solutions are available for .NET, but if we narrowed down the research based on Google and by word of mouth, it could be 1) Memcached 2) Applied 3) NCache

firs two is free, open source software, so it has some limitations, while on the other hand, NCache has something to offer compared to others, but you have to buy it. but it also has a free version called NCache Express. The following are two important links in this regard,

Video in NCache Vs AppFabric

Blog at NCache Vs AppFabric

0
source

All Articles