Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# redis-simple-cache
# redis-cache-python-layer
redis-simple-cache is a pythonic interface for creating a cache over redis.
It provides simple decorators that can be added to any function to cache its return values.

Expand Down
1 change: 1 addition & 0 deletions redis_cache/rediscache.py
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,7 @@ def func(*args, **kwargs):

serializer = json if use_json else pickle
fetcher = cache.get_json if use_json else cache.get_pickle
# This way, you need to make sure all args must be json or pcikle serializable.
storer = cache.store_json if use_json else cache.store_pickle

## Key will be either a md5 hash or just pickle object,
Expand Down