Skip to main content

backend for dogpile.cache with reading and writing the native value

Project description

Install

Use pip:

pip install dogpile_cache_native_redis

Usage

See the example.

Code:

from dogpile.cache import make_region

region = make_region().configure(
    'native_redis',
    # arguments are same as redis backend.
    arguments = {
        'host': "127.0.0.1",
    }
)

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']

See with redis-cli:

$ redis-cli
127.0.0.1:6379> get test
"value"
127.0.0.1:6379> mget key1 key2
1) "value1"
2) "100"

Project details


Release history Release notifications | RSS feed

This version

0.1

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

dogpile_cache_native_redis-0.1-py2.py3-none-any.whl (4.4 kB view hashes)

Uploaded Python 2 Python 3

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