Skip to main content

Django Cache With MongoDB

Installation and Usage

Install with:

$ pip install django-cache-with-mongodb

Add the following to your Django settings::

CACHES = {
    'default': {
        'BACKEND': 'django_cache_with_mongodb.MongoDBCache',
        "LOCATION": "[mongodb://][username:password@]host1[:port1][,...hostN[:portN]][/[defaultdb][?options]]",
        "OPTIONS": {
            "USERNAME": "username_if_desired",
            "PASSWORD": "password_if_needed",
            "DATABASE": "cache_db_name",  # in not supplied in URI
            "COLLECTION": "cache_collection",  # default: django_cache
            # Any Connection Options supported by pymongo
        },
        "TIMEOUT": 86400, # either set TIMEOUT or MAX_ENTRIES, not both
        "MAX_ENTRIES": 10000, # either set MAX_ENTRIES or TIMEOUT, not both
    }
}

LOCATION

Location supports MongoDB Connection String. Additionally, any supported pymongo parameters could be

OPTIONS

Any supported pymongo parameters could be added to OPTIONS.

Notice

The backend will handle TTL index creation if TIMEOUT is set, or will create a capped collection if MAX_ENTRIES is set. You should ensure that the collections are not created beforehands, so that the backend can do its work correctly.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

File details

Details for the file django_cache_with_mongodb-2024.11.27-py3-none-any.whl.

File metadata

File hashes

Hashes for django_cache_with_mongodb-2024.11.27-py3-none-any.whl
Algorithm Hash digest
SHA256 ca6d96e1fc7adc70941ae99d935445ceac79ed29c741d7d0aa61f55baa49b410
MD5 b92a34d160ef1539ebbe665b206eb709
BLAKE2b-256 01004a229838668ac1067353b0d5e8216440e573ef7f36e467a38b8b2332fc3e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

2024.11.27 This release

1 file

2024.10.31

1 file

2023.10.4

1 file

2021.7.8

1 file

2021.7.7

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page