1. ホーム
  2. python

[解決済み] redisで辞書を保存・取得する方法

2022-10-27 11:25:18

質問

# I have the dictionary my_dict
my_dict = {
    'var1' : 5
    'var2' : 9
}
r = redis.StrictRedis()

my_dictを保存し、redisで取得するにはどうしたらよいでしょうか。 例えば、以下のようなコードではうまくいきません。

#Code that doesn't work
r.set('this_dict', my_dict)  # to store my_dict in this_dict
r.get('this_dict')  # to retrieve my_dict

どのように解決するのですか?

次の方法で解決できます。 hmset (を使って複数のキーを設定することができます)。 hmset ).

hmset("RedisKey", dictionaryToSet)

import redis
conn = redis.Redis('localhost')

user = {"Name":"Pradeep", "Company":"SCTL", "Address":"Mumbai", "Location":"RCP"}

conn.hmset("pythonDict", user)

conn.hgetall("pythonDict")

{'Company': 'SCTL', 'Address': 'Mumbai', 'Location': 'RCP', 'Name': 'Pradeep'}