1
vote
0answers
25 views

HttpRuntime.Cache cache manager class

I am making code review of legacy class, which manages caching logic. Caching logic uses ASP.NET webforms HttpRuntime.Cache. I know class, that is posted below, is ...
2
votes
1answer
57 views

Is my ObjectCache wrapper sound?

Wrapper: ...
0
votes
0answers
39 views

Adding viewstate based property and implication in future converstion to mvc in asp.net forms project

Suppostedly adding another viewstate based property in user control (riddled with similar properties) incur technical debt in future effort to convert projects to MVC (comment made by one of my ...
1
vote
1answer
5k views

How to correctly use lock when adding/renewing cached data in asp.net cache?

This is sort of a follow up question on http://stackoverflow.com/questions/754661/httpruntime-cache-best-practices/11431198 where a reply from frankadelic contains this quote and code sample from ...
2
votes
1answer
367 views

Possible solutions to remove the use of a Hashtable

While this is working very well for storing setting variables for my applications, I've been using it for a number of years and really feel there is something better. I'm perhaps just looking to use ...