Skip to content

django-nonrel/mongodb-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What is it

A cache backend similar to Django's built-in db cache backend, but for MongoDB rather than for SQL databases.

How to use it

It's easy:

CACHES = {
    'default' : {
        'BACKEND' : 'django_mongodb_cache.MongoDBCache'
    }
}

Requirements