I'm searching for a good cache manager for generic objects.

I'm using C# with ASP.NET. I want to use System.Web.Cache. So I want a cache manager that will care about the caching and implement functions like ADD, GET, and UPDATE.

link|improve this question

57% accept rate
1  
What are you talking about..is it for asp.net... your question is too vague – Shekhar_Pro Feb 13 '11 at 10:55
in the title i wrote for c# so asp.net – avnic Feb 13 '11 at 10:59
2  
well Please is a polite way of asking question.. i don't see any problem in that.. the problem is in the question itself... – Shekhar_Pro Feb 13 '11 at 11:04
1  
@avnic writing C# in title dosen't tell us its for ASP.Net and FYI even VB.Net can be used for ASP.Net.. ASP is just and Server side technology not a language itself... and writing ASP.Net in Tags doesn't hurt... – Shekhar_Pro Feb 13 '11 at 11:07
1  
OK i got all your comments...but why my message edited to delete the 'thanks' in the end hahahha we are not robots – avnic Feb 13 '11 at 11:26
show 3 more comments
feedback

closed as not a real question by Shekhar_Pro, Sean, Darin Dimitrov, Filip Ekberg, Richard Feb 14 '11 at 10:20

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

NVelocity, NCache, and the Microsoft P&P Caching block

link|improve this answer
feedback

For in-process memory caching take a look at the following:

For .NET 4: http://msdn.microsoft.com/en-us/library/dd997357(v=VS.100).aspx

For earlier versions:

http://msdn.microsoft.com/en-us/library/xsbfdd8c(v=vs.71).aspx

http://codemaverick.blogspot.com/2007/01/caching-in-windows-application-i-was_8639.html

Those can easily be used to cache objects, though the latter is mostly intended for caching ASP.net pages - if that's what you want :)

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.