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
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
File details
Details for the file dogpile_cache_native_redis-0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: dogpile_cache_native_redis-0.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.4 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e4c0fac953bfd52692407c404153e1d861119f341a2dc3f6cd0397d5d346130 |
|
MD5 | 82ebd3e52475e0576f71ac49a26de8bb |
|
BLAKE2b-256 | 52d92f7fbe66f6a49b8df5ed462395acdfb7e2e2a86d3e14ae1c5ac015b31a62 |