在Django中如何使用Redis
阿新 • • 發佈:2020-07-25
在Django中如何使用Redis
通用方式
在utils
下建立redis_pool.py檔案
# 單例模式
import redis
POOL = redis.ConnectionPool(host="127.0.0.1",port=6379,max_connections=1000)
在檢視函式中使用
import redis from django.shortcuts import render,HttpResponse from utils.redis_pool import POOL def index(request): conn = redis.Redis(connection_pool=POOL) conn.hset('beast',{'name':'kevin','age':38}) return HttpResponse('設定成功') def order(request): conn = redis.Redis(connection_pool=POOL) conn.hget('beast','name') return HttpResponse('獲取成功')
使用Django Redis
# 下載安裝django-redis pip install django-redis # redis配置 CACHES = { "default": { "BACKEND": "django_redis.cache.RedisCache", "LOCATION": "redis://127.0.0.1:6379", "OPTIONS": { "CLIENT_CLASS": "django_redis.client.DefaultClient", "CONNECTION_POOL_KWARGS": {"max_connections": 1000} # "PASSWORD": "123", } } } django預設不支援redis快取 完成上述配置後,之後所有的快取都存到redis中
使用方式:
# 方式一 直接使用django的cache
from django.core.cache import cache
cache.set('name','lqz')
方式二:
# 使用conn物件
from django_redis import get_redis_connection
conn = get_redis_connection('default')
conn.set('name','lxx')
獲取name
的屬性
import redis from utils.redis_pool import POOL conn = redis.Redis(connection_pool=POOL) name = conn.get('name')