On Jan 11, 8:45 am, sector119 <[EMAIL PROTECTED]> wrote:
> Hi All!
>
> In Django docs I read that the cache middleware caches every page that
> _doesn't_ have GET or POST parameters.
> But I want to cache pages which has GET parameters - some views which
> data were _paginated_ and which urls have page=N GET parameters. How
> can I do that?

You can write your own custom middleware as Alex suggested. Or, if you
want to continue using the built-in cache middleware, change your
paging URLs so that the page number is part of the URL path rather
than a query parameter like this:

/section/topic/?page=1 gets changed to

/section/topic/page/1/


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to