django-redis出现字节数据
2021-04-06 本文已影响0人
不能没有音乐
CACHES = {
'default': {
'BACKEND': 'django_redis.cache.RedisCache',
'LOCATION': 'redis://localhost:6379/1',
'OPTIONS': {
'CLIENT_CLASS': 'django_redis.client.DefaultClient',
'CONNECTION_POOL_KWARGS': {'decode_responses': True}, # 添加这一行
}
}
}