I am using ASP.NET\'s data caching API. For example:
HttpRuntime.Cache.Insert(my_data, my_key);
Is there any way to configure cache so its
Recycling the appdomain dumps the cache. If you want to get around this you'd need to use a distributed cache. Here's an example.