newbie question on application cache

D

Danny Ni

Hi,

Will application cache work in a web farm environment? I don't think it will
work because each machine in the farm has its own web application. I am
asked to modify existing source codes which utilize application cache, but I
don't want to jump to conclusion.

The source codes belong to a shopping cart application called
AspDotNetStoreFront, just thought I should mention it.

TIA
 
A

Alberto Poblacion

Danny Ni said:
Will application cache work in a web farm environment? I don't think it
will work because each machine in the farm has its own web application. I
am asked to modify existing source codes which utilize application cache,
but I don't want to jump to conclusion.

The source codes belong to a shopping cart application called
AspDotNetStoreFront, just thought I should mention it.

No, only the Session state can be configured to be shared across a web
farm. The Cache is local to each of the machines, so it won't be shared
unless you replace the standard asp.net cache with your own mechanism.

See an article here:
http://www.eggheadcafe.com/articles/20030420.asp
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top