Hi,
I don't know the answer as I haven't really used caching, but I guess
the correct way to do it is to play with the HTTP headers, tweaking
the Cache-Control setting.
The headers can be changed with the response object, available in your
controller:
# Set HTTP response headers before returning
response.headers['Cache-Control'] = 'some value here'
Here's the RFC about Cache-Control:
http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9
Regards,
Alex
2009/11/25 Lea H <
baer...@gmail.com>: