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?