Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Caching for .NET (not in websites)

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)

like image 888
Jonathan Allen Avatar asked Aug 14 '09 20:08

Jonathan Allen


1 Answers

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.

like image 112
Nader Shirazie Avatar answered Sep 30 '22 09:09

Nader Shirazie