diff --git a/README.rst b/README.rst index f094ccf..eda7b71 100644 --- a/README.rst +++ b/README.rst @@ -63,24 +63,24 @@ The use of a cross-process cache such as Memcached is required. Install Memcached itself and a Memcached binding such as python-memcached. -For a single horizon instance use the CACHES setting like the example below. +For a single horizon instance use the CACHES setting like the example below.:: -CACHES = { - 'default': { - 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', - 'LOCATION': '127.0.0.1:11211', - }, -} + CACHES = { + 'default': { + 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', + 'LOCATION': '127.0.0.1:11211', + }, + } For multiple horizon instances behind a load balancer configure each instance -to use the same cache like the example below. +to use the same cache like the example below.:: -CACHES = { - 'default': { - 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', - 'LOCATION': [u'10.2.100.133:11211', u'10.2.100.134:11211''] - }, -} + CACHES = { + 'default': { + 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', + 'LOCATION': [u'10.2.100.133:11211', u'10.2.100.134:11211''] + }, + } NOTE: