Django如何使用redis作為快取
阿新 • • 發佈:2020-06-04
已有Django專案,在其中設定以redis為快取。
1、 安裝django-redis:
pip install django-redis
2、 在settings裡面配置cache設定:
CACHES = { "default":{ "BACKEND":"django_redis.cache.RedisCache","LOCATION":"redis://127.0.0.1:6379/1",# DB設為1 "TIMEOUT":None,# 永久快取,預設300秒 "OPTIONS":{ "CLIENT_CLASS":"django_redis.client.DefaultClient",# "PASSWORD":"xxxxxx" # 可能需要密碼 } } }
3、 設定好後可以在shell中測試一下:
(1) 在終端中啟動shell:
python manage.py shell
(2) 在shell中輸入,並檢視結果,驗證可讀寫Cache:
In [1]: from django.core.cache import cache
In [2]: cache.set('mykey','haha,I get it!')
Out[2]: True
In [3]: cache.get('mykey')
Out[3]: 'haha,I get it!'
(3) 如果不能正常啟動shell,可能是ipython版本過低,升級ipython即可:
pip install ipython --upgrade
4、 也可以新建test.py檔案來驗證,注意要匯入settings並執行settings.configure():
from django.conf import settings settings.configure() from django.core.cache import cache cache.set('key1','good day!') cache.set('key2','other day!') print(cache.get('key1')) print(cache.get('key2'))
能正常顯示如下即可:
good day!
other day!
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援我們。