views:

289

answers:

1

I have two ASP .NET Web sites using one same static instance of a cache manager. The first web site fetches data from a database and caches it using the forth mentioned cache manager object.

My problem is that i am unable to flush this cached data from my second Web site using the same cache manager static object. Is there anything wrong in trying to doing so and what are the possible solutions to this problem? (Any documentation material on the subject would be appreciated)

Thanking you in advance.

A: 

You have 2 options:

  • Create 2 instances of the cache manager
  • Configure your web sites to use different application pools
Shiraz Bhaiji