I have two ASP.NET 2.0 applications in IIS; a public reservation system and an administrative system for managing prices. There is a common DLL project that accesses the database used by both applications.
To improve performance, prices are cached in a DLL code to keep a hit on the database for each request. However, when an administrator changes prices, the cache is updated in the administrator’s application (and, obviously, it is not updated in the public application)
So to the question. Is it possible to configure IIS so that these two applications share HttpRuntime.Cache? If so, how to configure it?
source share