Post Reply 
[Help] DNS/Server Redirection
Jul. 05, 2011, 09:39 PM
Post: #5
RE: [Help] DNS/Server Redirection
I've also had caching issue in the past, which lead to some research....

What I found is that there is a rather strange header that exerts some control over caching, it's called Vary. By entirely eliminating that one, a goodly portion of my issues were resolved.

Code:
In = TRUE
Out = FALSE
Key = "Vary: blank it out [IN]}"
Match = "*"

I also deal with the Cache Control header, which is often used haphazardly by sites of less-than-stellar programming capabilities....

Code:
In = TRUE
Out = TRUE
Key = "Cache-Control: always cache public (in)"
Match = "*"
Replace = "public, max-age=3600, no-transform"

That forces everything to be public, which means that the browser can deal with it, the Expire timing is pretty generous, and that sites can't 'hide' behind transformed URLs - where it truly came from is what I see. Whistling

On non-Netscape browsers, I have found Pragma: no-cache effectively useless. That doesn't mean it should be ignored by one and all, that means only that I realize no benefit from it on my IE only system.

HTH




Oddysey

I'm no longer in the rat race - the rats won't have me!
Add Thank You Quote this message in a reply
Post Reply 


Messages In This Thread
[Help] DNS/Server Redirection - steellar - Jun. 08, 2011, 03:23 AM
RE: [Help] DNS/Server Redirection - Oddysey - Jul. 05, 2011 09:39 PM
RE: [Help] DNS/Server Redirection - ProxRocks - Jul. 06, 2011, 12:57 AM
RE: [Help] DNS/Server Redirection - Oddysey - Jul. 08, 2011, 08:11 PM
RE: [Help] DNS/Server Redirection - susa - Jun. 11, 2011, 10:41 AM
RE: [Help] DNS/Server Redirection - ProxRocks - Jun. 11, 2011, 11:07 AM

Forum Jump: