您的位置:首页技术文章
文章详情页

python2.7 - django 无法连接redis

【字号: 日期:2022-06-25 17:13:09浏览:27作者:猪猪

问题描述

django想用redis做缓存。无法连接redis。

#setting.py中CACHES={ 'default':{'BACKEND': 'django_redis.cache.RedisCache','LOCATION': '127.0.0.1:6379',’OPTIONS’: { #'CLIENT_CLASS': 'redis_cache.client.DefaultClient', 'DB': 0, 'PARSER_CLASS': 'redis.connection.HiredisParser', 'CONNECTION_POOL_CLASS': 'redis.BlockingConnectionPool', 'PICKLE_VERSION': -1 } }}

#views.pydef testCache(request): print cache print dir(cache) mn = cache.get('test2') return HttpResponse(mn)

python2.7 - django 无法连接redis

求大神指导,为何连接不上啊

问题解答

回答1:

’LOCARION’ is this a typo?

回答2:

’LOCATION’: ’redis://127.0.0.1:6379/4’,

标签: Python 编程
相关文章: