I want to use the new MemoryCache class but I am not yet using .NET 4. I do have a simple cache class (internally uses a dictionary). What would be a good approach in using this class like the MemoryCache? Does anyone know how MemoryCache is managed throughout the lifetime of an application (non asp.net)?

link|improve this question

60% accept rate
are we talking about a multithreaded application? as that would make things a lot more complicated – thekip Sep 21 '11 at 20:05
In this case no.... – Bob123Moon Sep 21 '11 at 20:05
feedback

1 Answer

up vote 0 down vote accepted

Maybe you can use a tool like Structuremap for that? It's not really meant to do these things (it's a DI container) but it will work out well if you specify some items as a singleton, some items on a request basis etc. It just depends on how granular you want the lifetime management to be.

link|improve this answer
Couldn't I just make the Cache class a singleton without using a DI tool? – Bob123Moon Sep 21 '11 at 20:14
You can but that will not solve you're lifecycle management problems. Making it a singleton will make all you objects last forever. – thekip Sep 21 '11 at 20:15
it will make the cache last the lifetime of the app, which is what I want. Am I missing something? The exe has a short lifespan - 1-2 minutes per execution – Bob123Moon Sep 21 '11 at 20:20
1  
Make it a singleton, no doubt about it. – thekip Sep 21 '11 at 20:21
cool thx....... – Bob123Moon Sep 21 '11 at 20:22
feedback

Your Answer

 
or
required, but never shown

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