Skip to main content

backend for dogpile.cache with reading and writing on mongodb

Project description

Install

Use pip:

pip install dogpile_mongo

Usage

See the example.

Code:

from dogpile.cache import make_region

db = MongoClient()['test']
region = make_region().configure(
     'mongo',
     # arguments are same as mongo backend.
     arguments={
         'db': db,
     }
)

region.set("test", b"value")
region.set_multi({"key1": b"value1", "key2": 100})
print(region.get("test"))
print(region.get_multi(["key1", "key2"]))

Result:

$ python main.py
b'value'
[b'value1', b'100']

Project details


Download files

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

Source Distribution

dogpile_mongo-0.0.1.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

dogpile_mongo-0.0.1-py2-none-any.whl (3.5 kB view hashes)

Uploaded Python 2

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page