我设置了Django& Redis项目并尝试在Redis中存储django模型对象。如果我使用django.core.cache
,如下所示,card2正确设置为django对象。但是,如果我使用django_redis提供的原始redis conenction,它将获取django模型对象的字符串表示。
我将两个键设置如下。如何使用原始redis连接获取卡对象本身而不是其字符串repr?我需要它,因为我想使用mget
,zrange
类似redis.py的方法。
from django.core.cache import cache
from django_redis import get_redis_connection
con = get_redis_connection("default")
card = Card.objects.all()[0]
key = "card_" + str(card.id)
con.delete(key)
cache.delete(key)
con.set(key, card)
cache.set(key, card)
card1 = con.get(key)
card2 = cache.get(key)