Opened 14 years ago
Closed 14 years ago
#15085 closed (fixed)
Cache arguments section uses invalid LOCATION for FileCache
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Documentation | Version: | dev |
Severity: | Keywords: | ||
Cc: | Triage Stage: | Ready for checkin | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
The Cache arguments section describes options for a FileCache but uses a URL rather than an absolute path (it's just accidentally copied from the memcached LOCATION). It should use /var/tmp/django_cache instead.
/django/trunk/docs/topics/cache.txt & http://docs.djangoproject.com/en/dev/topics/cache/#cache-arguments
- 'LOCATION': '127.0.0.1:11211', + 'LOCATION': '/var/tmp/django_cache',
Change History (2)
comment:1 by , 14 years ago
Triage Stage: | Unreviewed → Ready for checkin |
---|
comment:2 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
(In [15218]) Fixed #15085 - Fix LOCATION for FileCache example. Thanks abdelazer for the report.