I would like to know how I can implement caching for multiple IIS websites. I have different applications which use the same queries I cached.
I made a simple cache service that uses System.Web.Caching.Cache but this only works per website.
How can I achieve the same caching for all of my websites? These are all on the same (virtual) webserver.
Can I use NCache for this problem?
Thanks for any help!
Solution
For testing purpose I installed a Couchbase server using Memcached on my computer and this seems to work very nice. Now I just wonder can I install this on my webserver or should I make a new virtual server for the caching?