Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Top caching libraries for .NET

Tags:

.net

caching

What caching libraries would you consider to be the most important or useful for .NET?

I'm asking because I need to contact them to see they plan on supporting .NET 4.0's caching framework.

like image 435
Jonathan Allen Avatar asked May 12 '10 23:05

Jonathan Allen


People also ask

What is .NET cache?

Caching enables you to store data in memory for rapid access. When the data is accessed again, applications can get the data from the cache instead of retrieving it from the original source. This can improve performance and scalability.


2 Answers

Appfabric from Microsoft
Coherence from Oracle
NCache from Alachisfot
Memcached with .Net clients

like image 177
softveda Avatar answered Sep 28 '22 05:09

softveda


Aside from the ASP.NET cache, the only one I've seen in common use (and used myself) is Microsoft's own Caching Application Block in the Enterprise Library.

like image 27
Aaronaught Avatar answered Sep 28 '22 05:09

Aaronaught