CacheToolsUtils
Stackable cache classes for sharing, encryption, statistics and more on top of cachetools, redis and memcached.
Module Contents
For our purpose, a cache is a key-value store, aka a dictionary, possibly with
some constraints on keys (type, size) and values (size, serialization).
This module provides new caches, wrappers and other utilities suitable to use
with cachetools. Example:
import redis
import CacheToolsUtils as ctu
import config
redis_storage = redis.Redis(**config.REDIS_SERVER)
storage = ctu.RedisCache(redis_storage, raw=True, ttl=120)
crypto = ctu.EncryptedCache(storage, config.CACHE_KEY)
cache = ctu.ToBytesCache(crypto)
@ctu.cached(ctu.AutoPrefixedCache(cache), key=ctu.json_key)
def repeat(s: str, n: int) -> str:
return s * n
@ctu.cached(ctu.AutoPrefixedCache(cache), key=ctu.json_key)
def banged(s: str, n: int) -> str:
return repeat(s, n) + "!"
@ctu.cached(ctu.AutoPrefixedCache(cache), key=ctu.json_key)
def question(s: str, n: int) -> str:
return repeat(s, n) + "?"
print(banged("aa", 3)) # add 2 cache entries
print(question("aa", 3)) # add 1 entry, 1 hit
print(repeat("aa", 3)) # cache hit!
print(banged("aa", 3)) # cache hit!
assert cache.hits() > 0
Cache classes
RedisCacheallows to see a Redis server as a python cache by wrapping aredis.Redisinstance.MemCacheddoes the same for a Memcached server. The utility classJsonSerdeis a convenient JSON serializer-deserializer class for Memcached.DictCachea very simpledictcache.
Wrappers to extend cache capabilities
PrefixedCache,PrefixedMemCachedandPrefixedRedisCacheadd a prefix to distinguish sources on a shared cache.AutoPrefixedCacheadd a counter-based prefix.StatsCache,MemCachedandRedisCacheadd ahitsmethod to report the cache hit rate,statsto report statistics andresetto reset statistics.LockedCacheuse a (thread) lock to control cache accesses.TwoLevelCacheallows to combine two caches.DebugCacheto trace cache calls usinglogging.EncryptedCachea cache with key hashing and value encryption.ToBytesCachemap keys and values to bytes.BytesCachemap bytes keys and values to strings.
Cache utilities
cacheddecorator: a cachetools replacement which allows to test if a function result is in cache, and to delete such an entry.cacheFunctionsandcacheMethods: add caching to functions or methods.json_key,hash_json_key,full_hash_key: convenient JSON-based cache key serialization functions forcached.
License
This code is Public Domain.
All software has bug, this is software, hence… Beware that you may lose your hairs or your friends because of it. If you like it, feel free to send a postcard to the author.
More
See the documentation, sources and issues on GitHub.
See packages on PyPI.