Sparta memcached library
Project description
sparta-memcached
Sparta memcached library.
Usage
import pylibmc
import sparta.memcached
alice_cache = sparta.memcached.KeyPrefixWrapper(
pylibmc.Client(
["127.0.0.1:11211"],
binary=True,
behaviors={"tcp_nodelay": True, "ketama": True, "no_block": True},
),
key_prefix="alice/",
)
bob_cache = sparta.memcached.KeyPrefixWrapper(
pylibmc.Client(
["127.0.0.1:11211"],
binary=True,
behaviors={"tcp_nodelay": True, "ketama": True, "no_block": True},
),
key_prefix="bob/",
)
your_value = ...
alice_cache.set("your_key", your_value)
assert alice_cache.get("your_key") == your_value
assert alice_cache.get("your_key") != bob_cache.get("your_key")
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 Distribution
sparta-memcached-0.0.5.tar.gz
(4.0 kB
view hashes)
Built Distribution
Close
Hashes for sparta_memcached-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac3b485c29f518eb09b53e7d5eafbf7848b3ca23fdfa43ce7b1047d9faa600c5 |
|
MD5 | ae02b8ff5b73204d9fe794745d615b76 |
|
BLAKE2b-256 | 0eb5bf184726f26b7a440508053982acc64948ef9eee10132089ed33684e48ce |