vote up 2 vote down star

I'd like to use System.Web.Caching.Cache object in my application, but this code throws a NullReferenceException.

Cache cache = new Cache();
cache["key"] = new object();

Any ideas ?

Update

HttpRuntime.Cache solve my problem but does somebody has a solution to use multiple instance of cache in my application ?

flag

73% accept rate

2 Answers

vote up 2 vote down check

Use the HttpRuntime.Cache static property; it works fine.

link|flag
Thanks, but is there a solution to not use a level application cache ? – Nicolas Dorier Mar 19 at 19:58
You mean to allow multiple instances of it in a single process? Not that I've found, no (although admittedly I haven't looked very hard as I only need one cache per process). – Greg Beech Mar 19 at 19:59
Yes it's what I meant. It would be better with multiple instance because with this singleton unit tests are not independant anymore. – Nicolas Dorier Mar 19 at 20:01
What we do to get around that is stick the ASP.NET cache behind a custom ICache interface, and then during unit tests you can use a quick and dirty mock implementation. – Greg Beech Mar 19 at 20:13
yes good idea thanks :) – Nicolas Dorier Mar 19 at 20:39
vote up 2 vote down

Enterprise Library Caching Application Block might help you. It works fine for Windows applications as well as ASP.NET Applications.

link|flag

Your Answer

Get an OpenID
or

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