معرفی شرکت ها


django-cache-with-mongodb-2021.7.8


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Provides caching ability through MongoDB. Forked and detached from django_mongodb_cash_backend.
ویژگی مقدار
سیستم عامل -
نام فایل django-cache-with-mongodb-2021.7.8
نام django-cache-with-mongodb
نسخه کتابخانه 2021.7.8
نگهدارنده ['Olivier Hoareau']
ایمیل نگهدارنده ['olivier.p.hoareau@gmail.com']
نویسنده Olivier Hoareau
ایمیل نویسنده olivier.p.hoareau@gmail.com
آدرس صفحه اصلی https://github.com/Olivier-OH/django-cache-with-mongodb
آدرس اینترنتی https://pypi.org/project/django-cache-with-mongodb/
مجوز BSD-3-Clause
# 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": "hostname[:port]", "OPTIONS": { "USERNAME": "username_if_desired", "PASSWORD": "password_if_needed", "DATABASE": "cache_db_name", "COLLECTION": "cache_colleciton", # default: django_cache }, "TIMEOUT": 86400, # either set TIMEOUT or MAX_ENTRIES, not both "MAX_ENTRIES": 10000, # either set MAX_ENTRIES or TIMEOUT, not both } } ## 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.


نیازمندی

مقدار نام
==3.* pymongo


نحوه نصب


نصب پکیج whl django-cache-with-mongodb-2021.7.8:

    pip install django-cache-with-mongodb-2021.7.8.whl


نصب پکیج tar.gz django-cache-with-mongodb-2021.7.8:

    pip install django-cache-with-mongodb-2021.7.8.tar.gz