Opened 13 years ago

Closed 13 years ago

#15085 closed (fixed)

Cache arguments section uses invalid LOCATION for FileCache

Reported by: abdelazer@… 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 Jannis Leidel, 13 years ago

Triage Stage: UnreviewedReady for checkin

comment:2 by Tim Graham, 13 years ago

Resolution: fixed
Status: newclosed

(In [15218]) Fixed #15085 - Fix LOCATION for FileCache example. Thanks abdelazer for the report.

Note: See TracTickets for help on using tickets.
Back to Top