up vote 0 down vote favorite
share [g+] share [fb]

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.

link|improve this question
feedback

1 Answer

You have 2 options:

  • Create 2 instances of the cache manager
  • Configure your web sites to use different application pools
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.