Is there anyway to tell the .net cache to use the application tag server instead of local memory?

We managed to use the App Fabric caching server to store ours Outputcachewithout changing our code, only with customization. And it works very well.

Is there a way to do the same with .Net Cache ( HttpContext.Current.Cache)? without changing our code, only config.

thank

+3
source share
1 answer

There is no provider abstraction ( ProviderBase) for the HttpContext Cache . For OutputCache and Session as directed by @Icarus. This will require a code change.

Here are a couple of ideas for you ...

0

All Articles