Opened 9 years ago
Closed 9 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 Changed 9 years ago by
comment:2 Changed 9 years ago by
Type: | Uncategorized → Bug |
---|
comment:3 Changed 9 years ago by
Easy pickings: | set |
---|
comment:4 Changed 9 years ago by
Owner: | changed from nobody to Dan Poirier |
---|---|
Triage Stage: | Unreviewed → Accepted |
comment:5 Changed 9 years ago by
Has patch: | set |
---|
Patch/pull request at
https://github.com/django/django/pull/74
https://github.com/django/django/pull/74.diff
Changed 9 years ago by
Attachment: | 17119.diff added |
---|
Looking at the cache code, doc is clearly wrong.