vote up 4 vote down star
2

I need a cache that responds to memory pressure like the one build-into ASP.NET. I'm not using a web site, however, I'm building a Windows Service.

Any suggestions? (code, techniques, products, I don't care as long as it's in-memory)

flag

57% accept rate

4 Answers

vote up 8 vote down check

If you're familiar with the ASP.NET Cache (System.Web.Caching), you can still reference and use it, even if you're not running within a web application.

link|flag
3  
You can access it via System.Web.HttpRuntime.Cache (static property) – Richard Szalay Aug 14 at 21:07
I can't beat that. – Jonathan Allen Aug 18 at 20:15
Man that is non-obvious. I tried to use it today and both "HttpContext.Current.Cache" and "New Cache" were failing without telling me why. Of course the non-obvious HttpRuntime.Cache worked like a champ. – Jonathan Allen Sep 30 at 17:19
Agreed. But HttpContext.Current will always be null if you're not processing an ASP.NET request. – Nader Shirazie Sep 30 at 20:41
vote up 2 vote down
link|flag
Velocity is an out-of-process option. That makes it great for server farms, but silly for an application that will one have one running instance world-wide. – Jonathan Allen Aug 18 at 20:14
I listed it as an option so that you are at least aware of your otions. It is up to you to evaluate and eliminate based on your requirements, cost-benefit analysis, and thought process. After all, it is hard to determine what's silly or not about an application given just a couple of sentences. Also keep in mind, it is out-of-process but in memory. It may be nice to find things already cached in memory when your application starts up. – Mehmet Aras Aug 18 at 21:47
vote up 1 vote down

Have you looked at the Microsoft Enterprise library Caching Block:

"Nearly every application needs to cache data. While you're probably familiar wth the caching functionality built into ASP.NET, the Enterprise Library Caching Block provides in-memory, file-based, or database caching storage for all your other .NET applications. "

Caching App Block

link|flag
vote up 1 vote down

memcached has clients for .Net:

link|flag

Your Answer

Get an OpenID
or

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