Opened 13 years ago
Closed 13 years ago
#17119 closed Bug (fixed)
Cache Framework: wrong per-site cache behavior documentation
Reported by: | Vanni | Owned by: | Dan Poirier |
---|---|---|---|
Component: | Documentation | Version: | 1.3 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | yes | UI/UX: | no |
Description
From https://docs.djangoproject.com/en/dev/topics/cache/#the-per-site-cache documentation page: "The cache middleware caches every page that doesn't have GET or POST parameters".
AFAIK it is not true. URLs with GET parameters (like http://www.example.com/?this_is_a_get_param=value) get (IMHO correctly) cached and POST parameters are simply ignored.
Attachments (1)
Change History (7)
comment:1 by , 13 years ago
comment:2 by , 13 years ago
Type: | Uncategorized → Bug |
---|
comment:3 by , 13 years ago
Easy pickings: | set |
---|
comment:4 by , 13 years ago
Owner: | changed from | to
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:5 by , 13 years ago
Has patch: | set |
---|
Patch/pull request at
https://github.com/django/django/pull/74
https://github.com/django/django/pull/74.diff
by , 13 years ago
Attachment: | 17119.diff added |
---|
Note:
See TracTickets
for help on using tickets.
Looking at the cache code, doc is clearly wrong.