安装redis
sudo apt-get install -y redis-server
设置密码
sudo vi /etc/redis/redis.conf 密码在 500行左右
服务端重启
service redis restart 开始 start 停止 stop
客户端连接
redis-cli -h IP地址 -p 6379 -a 密码
允许远程连接
1、注释掉本地IP地址绑定
69行: # bind 127.0.0.1 ::1
2、关闭保护模式(把yes改为no)
88行: protected-mode no
3、重启服务
sudo /etc/init.d/redis-server restart
原文链接:https://blog.csdn.net/m0_67403013/article/details/124090499
2 与Django连接配置
首先安装 django-redis
pip install django-redis redis
然后在settings中配置:
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': 200}
}
}
}
连接方式一
from django_redis import get_redis_connection
cache = get_redis_connection('default')
连接方式二
import redis
cache = redis.Redis(host='localhost', port=6379)
cache
Redis<ConnectionPool<Connection<host=localhost,port=6379,db=0
通用命令
# 切换库(number的值在0-15之间,db0 ~ db15)
select 0
# 查看键
keys 表达式 # keys *
# 数据类型
type key
# 键是否存在
exists key
# 删除键
del key
# 键重命名
rename key newkey
# 清除当前库中所有数据(慎用)
flushdb
# 清除所有库中所有数据(慎用)
flushall
python交互redis
sudo pip3 install redis
import redis
# 创建数据库连接对象
r = redis.Redis(host='127.0.0.1',port=6379,db=0,password='123456')