зеркало из
1
0
Форкнуть 0
INACTIVE - http://mzl.la/ghe-archive - A Pooled memcached connector for Django
Перейти к файлу
Tarek Ziade 1535fb02e6 prep for release 2013-12-13 10:17:17 +01:00
memcachepool Use pickle.HIGHEST_PROTOCOL (fix issue #8) 2013-02-12 16:00:19 -03:00
CHANGES.rst prep for release 2013-12-13 10:17:17 +01:00
LICENCE added a licence 2012-09-07 16:06:50 +02:00
MANIFEST.in initial implementation of a umemcache based connector 2012-08-01 14:54:53 -07:00
README.rst added a note about umemcache version - I don't want to force this via setup.py 2012-10-05 12:10:05 +02:00
setup.py prep for release 2013-12-13 10:17:17 +01:00

README.rst

django-memcached-pool
=====================

An efficient fast Django Memcached backend with a pool of connectors, based on
ultramemcache.

See https://github.com/esnme/ultramemcache

Each connection added in the pool stays connected to Memcache or Membase,
drastically limiting the number of reconnections and open sockets your
application will use on high load.

If you configure more than one Memcache server, each new connection
will randomly pick one.

Everytime a socket timeout occurs on a server, it's blacklisted so
new connections avoid picking it for a while.

To use this backend, make sure the package is installed in your environment
then use `memcachepool.cache.UMemcacheCache` as backend in your settings.

**Also, make sure you use umemcache >= 1.5**

Here's an example::


    CACHES = {
        'default': {
            'BACKEND': 'memcachepool.cache.UMemcacheCache',
            'LOCATION': '127.0.0.1:11211',
            'OPTIONS': {
                    'MAX_POOL_SIZE': 100,
                    'BLACKLIST_TIME': 20,
                    'SOCKET_TIMEOUT': 5,
                    'MAX_ITEM_SIZE': 1000*100,
                }
            }
        }


Options:

- **MAX_POOL_SIZE:** -- The maximum number of connectors in the pool. default: 35.
- **BLACKLIST_TIME** -- The time in seconds a server stays in the blacklist. default: 60
- **SOCKET_TIMEOUT** -- the time in seconds for the socket timeout. default: 4
- **MAX_ITEM_SIZE** -- The maximum size for an item in Memcache.