Basic Redis/Disk/Memory caching for functions
Project description
python-flex-cache
Simple & flexible caching for Python functions backed by either redis, disk or memory
Requirements
- Redis 5+
- Python 3.6+
How to install
pip install python-flex-cache
How to use
Initialize through config
from flex_cache import init_cache_from_settings
memcache = init_cache_from_settings({'type': 'MemCache'})
diskcache = init_cache_from_settings({'type': 'DiskCache',
'diskcache_directory': '/tmp'})
rediscache = init_cache_from_settings({'type': 'RedisCache',
'redis_host': 'redis',
'redis_username': 'xx',
'redis_password': 'yy'})
Initialize manually
from redis import Redis
from diskcache import Cache as DCache
from flex_cache import MemCache, DiskCache, RedisCache
memcache = MemCache()
diskcache = DiskCache(DCache())
rediscache = RedisCache(redis_client=Redis(host="redis", decode_responses=True))
Usage
from flex_cache import init_cache_from_settings
cache = init_cache_from_settings({'type': 'MemCache'})
@cache.cache()
def my_func(arg1, arg2):
result = 123+456 # or some expensive function
return result
# Use the function
my_func(1, 2)
# Call it again with the same arguments and it will use cache
my_func(1, 2)
# Invalidate a single value
my_func.invalidate(1, 2)
# Invalidate all values for function
my_func.invalidate_all()
Limitations and things to know
Arguments and return types must be JSON serializable by default. You can override the serializer, but be careful with using Pickle. Make sure you understand the security risks. Pickle should not be used with untrusted values. https://security.stackexchange.com/questions/183966/safely-load-a-pickle-file
- ttl - seconds - based on insertion in the cache - ie. not last access
- limit - ONLY for redis! limit will revoke keys (once it hits the limit) based on FIFO, not based on LRU
API
from flex_cache.basecache import BaseCache
from json import loads, dumps
BaseCache(prefix="rc", serializer=dumps, deserializer=loads)
@BaseCache.cache(ttl=None, limit=None, namespace=None)
def cached_func(*args, **kwargs):
pass # some costly thing
# Cached function API
# Returns a cached value, if it exists in cache else computes and saves value in cache
cached_func(*args, **kwargs)
# Invalidates a single value
cached_func.invalidate(*args, **kwargs)
# Invalidates all values for cached function
cached_func.invalidate_all()
- prefix - The string to prefix the redis keys with
- serializer/deserializer - functions to convert arguments and return value to a string (user JSON by default)
- ttl - The time in seconds to cache the return value
- namespace - The string namespace of the cache. This is useful for allowing multiple functions to use the same cache. By default its
f'{function.__module__}.{function.__file__}'
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
Built Distribution
File details
Details for the file python-flex-cache-0.1.9.tar.gz
.
File metadata
- Download URL: python-flex-cache-0.1.9.tar.gz
- Upload date:
- Size: 9.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 687187451468c7cd30556f6bdfcb69062f34bd07033b226b94485a8df41e896f |
|
MD5 | 360ae12c9bcff6b0a56f8e2a45fb3ca9 |
|
BLAKE2b-256 | b1777aca30838ba52623ed4edc0e59517106c91f335de5ef5d36065e940ca3a3 |
File details
Details for the file python_flex_cache-0.1.9-py3-none-any.whl
.
File metadata
- Download URL: python_flex_cache-0.1.9-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.0 CPython/3.9.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f85a2a6c403ade1978fc8fad220208b3efada780a6bc4c0ca23efbd24fecd1c |
|
MD5 | f6fa97c0ea201c3af89b431bd87b9667 |
|
BLAKE2b-256 | d53083930cab3263c814fafde5f4d00eac4547019df9119e78aed28230d3f56b |