I was reading the django docs at http://docs.djangoproject.com/en/dev/topics/cache/?from=olddocs and I read the following line:
the cache middleware caches every page that doesn't have GET or POST parameters.
Does this mean that it won't cache pages that does have GET or POST parameters? If that's true, then it seems rather silly because a good portion of a website has some GET or POST parameters. Pagination, for example, is extremely common. Can anyone clarify this?
Thank you!