redis로 사전을 저장하고 검색하는 방법 # 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 red..