Static Content Caching in Sticky Session ?
Posted
by
Ravi
on Server Fault
See other posts from Server Fault
or by Ravi
Published on 2012-04-03T09:26:16Z
Indexed on
2012/04/03
11:33 UTC
Read the original article
Hit count: 242
can we do Static Content caching in Sticky Session Servers. We use SqlStateServer to store the Session of the user. right now we are doing performance tuning in our application, so we decided to cache the static Content(images, css, js) for the applicaiton. so that it loads faster.
- Is it Good to cache the static content in Sticky Session ?
- If it's good, then can any one give me some links where i can read about it.
right now i done following settings in my web config file
<staticContent>
<clientCache cacheControlCustom="public" cacheControlMode="UseMaxAge" cacheControlMaxAge="500.00:00:00" />
</staticContent>
can this is the good code ? will it not affect our sticky session environment ? my goal is to cache the static images, css, Js for the application
© Server Fault or respective owner