Last active
October 28, 2024 09:40
-
-
Save vladignatyev/722551de2a992577a2cd to your computer and use it in GitHub Desktop.
Save Python dict to Redis hash
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def dict_to_redis_hset(r, hkey, dict_to_store): | |
""" | |
Saves `dict_to_store` dict into Redis hash, where `hkey` is key of hash. | |
>>> import redis | |
>>> r = redis.StrictRedis(host='localhost') | |
>>> d = {'a':1, 'b':7, 'foo':'bar'} | |
>>> dict_to_redis_hset(r, 'test', d) | |
True | |
>>> r.hgetall('test') | |
{'a':1, 'b':7, 'foo':'bar'} | |
""" | |
return all([r.hset(hkey, k, v) for k, v in dict_to_store.items()]) |
Given that hmset
is deprecated, for dictionaries we can use hset
, like this (do not skip the named mapping
arg):
r.hset(hkey, mapping=dict_to_store)
See in redis-py docs.
Does anyone know how to store a dict value? I get this error when I try to map a key to a dict value
DataError: Invalid input of type: 'dict'. Convert to a bytes, string, int or float first.
If someone notices that even with mapping attribute you get DataError: Invalid input of type: 'dict'. Convert to a bytes, string, int or float first.
when trying to set dict as value, check that values inside the dict are also ints, bytes or strs. I was trying to hset with ...mapping={'mapping': {'nested_mapping': 'which i have not noticed'}}
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hmset is deprecated