Forum Discussion
AvinashP_138219
Nimbostratus
Nov 27, 2013pro-actively check for specific updated content
Hi,
I'm using a Web Acceleration profile (configurend from the web interface) to do caching on a BIG-IP 3600 LTM running version 11.2.0 Build 2451.0 Hotfix HF1. That works fine.
The issue r...
IheartF5_45022
Nacreous
Nov 28, 2013Another thing to think about is setting the http-acceleration profile to cache pages indefinitely, and then using an iRule to invalidate the cache (making sure you restrict who can invalidate) and force the request to be sent to the origin web server ie.
when HTTP_REQUEST {
Check for expiration cookie from CMS
set fExpirePage 0
if {[HTTP::header "CMS-Expire"] ne "" && [IP::addr [IP::remote_addr]] eq "10.10.10.10"} {
Expiration cookie is there
set fExpirePage 1
}
}
when CACHE_REQUEST {
Expire this object
if {$fExpirePage} {
CACHE::expire
}
}
You could use this in conjunction with the cache-buster query parameters.
Help guide the future of your DevCentral Community!
What tools do you use to collaborate? (1min - anonymous)Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects