p.a.caching add-on for a better purging policy
Project description
collective.purgebyid
collective.purgbyid is a new method for cache invalidation of Plone based web sites. It uses the idea of adding an extra header, called X-Ids-Involved, which contains thee uuids of the objects involved in the construction of the resources. For example, an image contains just its uuid:
% wget -S http://localhost:8080/Plone/image01 ... X-Ids-Involved: #c8d7c0bc2b794325b916d990de91d7ee#
Other pages may be more complicated. Then a new purge rewrite rule adds a custom URL to the set of URLs to purge: the “purge by id” custom URL is in the form /@@purgebyid/<UUID> where UUID is the object’s uuid to be purged.
Last, Varnish is configured so that, when an URL /@@purgebyid/<UUID> is purged, it will ban all the objects that match an X-Ids-Involved header of the right type (i.e. containing the uuid of the resource to purge). This means that when a resources is purged, it is enough to purge also it /@@purgebyid/<UUID> URL because it will be Varnish responsibily to also catch all of the occurrencies of the resources whenever the URL which is used to access it.
Varnish
Config example:
sub vcl_recv { if (req.request == "PURGE") { if (!client.ip ~ purge) { error 405 "Not allowed."; } if (req.url ~ "^/@@purgebyid/") { ban("obj.http.x-ids-involved ~ #" + regsub(req.url, "^/@@purgebyid/", "") + "#"); error 200 "Ban added"; } } } sub vcl_deliver { unset resp.http.x-ids-involved; }
Contributors
Mauro Amico, Author
Changelog
1.0.0a1 (2013-09-11)
Package created using templer [Mauro Amico]
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Hashes for collective.purgebyid-1.0.0a1.zip
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99de16520de7d111985878acf2838f2f036aa3de816d27475f4bd02f8377d228 |
|
MD5 | 4bc06d6a2bab71c30f8800f1446ba4aa |
|
BLAKE2b-256 | 54eb57ed51b1167f7f416009f4c8b41cb1ac49eb9253a10fe7d08306f187e87f |