成人在线亚洲_国产日韩视频一区二区三区_久久久国产精品_99国内精品久久久久久久

您的位置:首頁(yè)技術(shù)文章
文章詳情頁(yè)

Django如何使用redis作為緩存

瀏覽:2日期:2024-10-01 08:34:22

已有Django項(xiàng)目,在其中設(shè)置以redis為緩存。

1、 安裝django-redis:

pip install django-redis

2、 在settings里面配置cache設(shè)置:

CACHES = { 'default':{ 'BACKEND':'django_redis.cache.RedisCache', 'LOCATION':'redis://127.0.0.1:6379/1', # DB設(shè)為1 'TIMEOUT':None, # 永久緩存,默認(rèn)300秒 'OPTIONS':{ 'CLIENT_CLASS':'django_redis.client.DefaultClient', # 'PASSWORD':'xxxxxx' # 可能需要密碼 } }}

3、 設(shè)置好后可以在shell中測(cè)試一下:

(1) 在終端中啟動(dòng)shell:

python manage.py shell

(2) 在shell中輸入,并查看結(jié)果,驗(yàn)證可讀寫(xiě)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) 如果不能正常啟動(dòng)shell,可能是ipython版本過(guò)低,升級(jí)ipython即可:

pip install ipython --upgrade

4、 也可以新建test.py文件來(lái)驗(yàn)證,注意要導(dǎo)入settings并執(zhí)行settings.configure():

from django.conf import settingssettings.configure()from django.core.cache import cachecache.set(’key1’,’good day!’)cache.set(’key2’,’other day!’)print(cache.get(’key1’))print(cache.get(’key2’))

能正常顯示如下即可:

good day!

other day!

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持好吧啦網(wǎng)。

標(biāo)簽: Django
相關(guān)文章: