Dieter Maurer was as kind as he always is one the Zope mailing list and explained to me the difference between using the Cache-Control and the Expires header for inducing browsers to cache your web elements. He explains:

Cache control is the modern (HTTP 1.1) way, "Expires" the old (HTTP 1.0) one.

My problem is that I've know about each but never bothered to find out why there are two ways of doing the same thing. In most of my projects I've used the oldschool method of setting RFC822 formatted future dates on the Expires header, but from now on I'll use both. Dieter continues on my question "What is best to use and for what?":

Use them both:

HTTP 1.1 clients will honour "Cache-Control" (which is easier to use and much more flexible).

HTTP 1.0 clients will ignore "Cache-Control" but honour "Expires". With "Expires" you get thus at least a bit control for these old clients.

Now, let's speak code. Here's what I now do to set caching on my pages when I want to:


def doCache(self, hours=10):
    """ set cache headers on this request if not in debug mode """
    if not self.doDebug():
        response = self.REQUEST.RESPONSE
        now = DateTime()
        then = now+int(hours/24.0)
        response.setHeader('Expires',then.rfc822())
        response.setHeader('Cache-Control', 'public,max-age=%d' % int(3600*hours))

This I can then use in say a stylesheet like this:


<dtml-call "doCache(48)">

Comments

Sukh

How do I add this to my site. I would like it so when the user goes back you get an Expired page appear. I have looked over the web for a solution but cannot seem to find one. Can I simply put the above method in a script and call it each time a page is loaded.

Colin Wallace

Could you kindly explain what the DateTime object is? Perhaps it's because I'm using Python 2.7, but the datetime class in the datetime module has no rfc822 method.
Thanks!

Peter Bengtsson

DateTime was a utility library used in Zope2.

Your email will never ever be published.

Previous:
Misstake or hidden Nazi message? September 13, 2005 Politics
Next:
Python regular expression tester September 19, 2005 Python
Related by category:
To all Zope developers: Does this sound familiar? March 8, 2011 Zope
IssueTrackerProduct now officially abandoned March 30, 2012 Zope
Sending HTML emails in Zope October 26, 2006 Zope
zope-memory-readings - Tracking Zope2's memory usage by URL May 30, 2008 Zope
Related by keyword:
How to use django-cache-memoize November 3, 2017 Python, Django
Fastest Redis configuration for Django May 11, 2017 Python, Linux, Web development, Django
cache_memoize - a pretty decent cache decorator for Django September 11, 2017 Python, Web development, Django
variable_cache_control - Django view decorator to set max_age in runtime January 22, 2019 Python, Django