반응형
# 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
반응형
'파이썬' 카테고리의 다른 글
파이썬 Pandas Barplot에서 x 축 눈금 레이블을 회전하는 방법 (0) | 2020.11.19 |
---|---|
파이썬 iPython 설치 : "ImportError cannot import name path"? (0) | 2020.11.19 |
파이썬에서 가변 자릿수로 숫자를 어떻게 포맷합니까? (0) | 2020.11.19 |
파이썬 python OpenCV-RGB 이미지에 알파 채널 추가 (0) | 2020.11.19 |
파이썬 중첩 된 사전을 예쁜 인쇄하는 방법? (0) | 2020.11.19 |
댓글