WCF Runtime Caching
Posted
by francois
on Stack Overflow
See other posts from Stack Overflow
or by francois
Published on 2010-02-18T09:23:03Z
Indexed on
2010/03/25
9:03 UTC
Read the original article
Hit count: 325
Hi I'm using the following code to cache objects.
HttpRuntime.Cache.Insert("Doc001", _document); HttpRuntime.Cache.Remove("Doc001");
I would like to know were the cache is stored? (On the client PC or the IIS server)
Is this a save way of cache objects and by adding and removing cache in this way will it influence any of the other clients, say for instance i've got 2 clients connected and both are storing cache "*HttpRuntime.Cache.Insert("Doc001", _document);*" and one client removes the cache, is it only removed on a client level?
© Stack Overflow or respective owner