redis-dict
redis-dict copied to clipboard
Python Redis Dictionary. Pythonic wrapper that provides name spacing for everyone favorite caching database Redis.
# Description When using redis-dict and the delete keyword, a keyerror is not thrown when the key does not exist in the redis dictionary. This should be default behaviour as...
## Description Accoding to python's [documentation](https://docs.python.org/3/tutorial/datastructures.html#dictionaries), using `list()` on a dictionary should return it's keys following insertion order. However, when I try to do the same with `RedisDict`, I get...
Hi, thanks for the useful lib. Small change to inherit from MutableMapping to improve downstream type hints, for example to more easily accept either a dict or a RedisDict.
Hi @Attumm Lovely project. I am building atop it to have a slightly modified version. If you're open to it, I think it would be good to have these features...
As the title says allow keys to of different types. Int, None, Datetime, etc