Metadata-Version: 1.1
Name: django-pymemcache
Version: 0.1.0
Summary: Django cache backend based on Pinterest's pymemcache client.
Home-page: https://github.com/jsocol/django-pymemcache
Author: James Socol
Author-email: me@jamessocol.com
License: Apache Software License 2.0
Description: django-pymemcache
        =================
        
        django-pymemcache is a Django cache backend that uses Pinterest's
        pymemcache_ library as the backend.
        
        Installation
        ------------
        
        ::
        
            pip install django-pymemcache
        
        Usage
        -----
        
        Simply use it as any other Cache backend, e.g.::
        
            CACHES = {
                'default': {
                    'BACKEND': 'djpymemcache.backend.PyMemcacheCache',
                    'LOCATION': [
                       '127.0.0.1:11211',
                    ],
                },
            }
        
        .. note::
        
            The backend currently only supports connecting to one server.
        
        Issues
        ------
        
            https://github.com/jsocol/django-pymemcache/issues
        
        
        .. _pymemcache: https://github.com/pinterest/pymemcache
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
