Redis memoize cache
Project description
rcache.py
What is it
rcache.py is a cache and works on redis so it is suitable for multi threaded and multi process applications.
It has been inspired and based on cache.py
library https://github.com/bwasti/cache.py
Usage
To use the file, import rcache
and annotate functions with @rcache.rcache()
.
import rcache
@rcache.rcache()
def expensive_func(arg, kwarg=None):
# Expensive stuff here
return arg
The @rcache.rcache()
function can take multiple arguments.
@rcache.rcache(timeout=20)
- Only caches the function for 20 seconds.@rcache.rcache(url="http://other_redis:6379")
- Saves cache to specified Redis url (defaults tohttp://localhost:6379
)@rcache.rcache(key=rcache.ARGS[KWARGS,NONE])
- Check against args, kwargs or neither of them when doing a cache lookup.
How it works
rcache.py
queries redis
and checks against the name, arguments and hash of a function's source
to decide if the function has been run before. If it has it returns the cached result immediately.
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 rcache-1.0.0.tar.gz
.
File metadata
- Download URL: rcache-1.0.0.tar.gz
- Upload date:
- Size: 3.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.11 CPython/3.7.2 Linux/4.14.48-coreos-r2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 35ec2195ff7df7925a345e8a2d4550d42a92129ae93635960ee3616a77e40c7c |
|
MD5 | df47f600f37aaf96d2e18d86398a800c |
|
BLAKE2b-256 | 508f23449080ccbd420093a7e08540720b2afdd425b09c85a75af8d93e49554d |
File details
Details for the file rcache-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: rcache-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.11 CPython/3.7.2 Linux/4.14.48-coreos-r2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0e7fad9d695c12320d5c07b9487601c3496f9401abffa06591ec34815e13265 |
|
MD5 | 51970214a7dc323e1ad1376b14ee34a0 |
|
BLAKE2b-256 | 7cb57567ffc16f819716210a4f6327d0a505f00e312506d4fbe99c164705a302 |