본문 바로가기
파이썬

파이썬 redis로 사전을 저장하고 검색하는 방법

by º기록 2020. 11. 19.
반응형
# 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'}

 

참조 페이지 https://stackoverflow.com/questions/32276493

 

 

반응형

댓글