Metadata-Version: 1.1
Name: django-pymemcache
Version: 0.2.0
Summary: Django cache backend based on Pinterest's pymemcache client.
Home-page: https://github.com/django-pymemcache/django-pymemcache
Author: James Socol
Author-email: me@jamessocol.com
License: Apache Software License 2.0
Description: django-pymemcache
        =================
        
        .. image:: https://travis-ci.org/django-pymemcache/django-pymemcache.svg?branch=master
           :target: https://travis-ci.org/django-pymemcache/django-pymemcache
        .. image:: https://codecov.io/gh/django-pymemcache/django-pymemcache/branch/master/graph/badge.svg
           :target: https://codecov.io/gh/django-pymemcache/django-pymemcache
        .. image:: https://img.shields.io/pypi/v/django-pymemcache.svg?style=flat
           :target: https://pypi.org/project/django-pymemcache/
        .. image:: https://img.shields.io/pypi/djversions/django-pymemcache.svg?style=flat
        .. image:: https://img.shields.io/pypi/pyversions/django-pymemcache.svg?style=flat
        
        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',
                    ],
                },
            }
        
        Issues
        ------
        
            https://github.com/django-pymemcache/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 :: 1.11
Classifier: Framework :: Django :: 2.0
Classifier: Framework :: Django :: 2.1
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
