Skip to content

rewardStyle/django-pymemcache

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A Django cache backend built in Pinterest's pymemcache.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%