Re: No caching if request.GET not empty

2010-09-29 Thread Thomas Guettler
Hi, there is already a ticket: http://code.djangoproject.com/ticket/4992 Thomas Guettler wrote: > Hi, > > requests with a query string (http://example.com?foo=bar) are not cached in > Django: > > http://code.djangoproject.com/svn/django/trunk/django/middleware/cache.py > {{{ > if not

No caching if request.GET not empty

2010-09-27 Thread Thomas Guettler
Hi, requests with a query string (http://example.com?foo=bar) are not cached in Django: http://code.djangoproject.com/svn/django/trunk/django/middleware/cache.py {{{ if not request.method in ('GET', 'HEAD') or request.GET: request._cache_update_cache = False retur