Update memcached link in settings.py
I noticed that in settings.py there is a link to very old Django 1.1 docs: docs DOT djangoproject DOT com/en/1.1/topics/cache/
In those docs the recommended python bindings module is cmemcache, which has been retired since 2009 and no longer recommended.
It would be a good idea to upgrade that to 1.5 to keep people from getting confused.
Comments
EDIT: Actually, the settings.py example is completely incorrect anyway on newer versions of Django. You'll need to configure it like this in newer versions: CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': '127.0.0.1:11211', } }