Commit ad67fcdf authored by Bryan Marty's avatar Bryan Marty Committed by Tim Graham
Browse files

Fixed #24212 -- Added example pylibmc CACHES configuration.

parent a1721664
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -114,6 +114,15 @@ In this example, Memcached is available through a local Unix socket file
        }
    }

When using the ``pylibmc`` binding, do not include the ``unix:/`` prefix::

    CACHES = {
        'default': {
            'BACKEND': 'django.core.cache.backends.memcached.PyLibMCCache',
            'LOCATION': '/tmp/memcached.sock',
        }
    }

One excellent feature of Memcached is its ability to share a cache over
multiple servers. This means you can run Memcached daemons on multiple
machines, and the program will treat the group of machines as a *single*