python使用Redis

Posted 生活很苦,但请一定坚持。

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python使用Redis相关的知识,希望对你有一定的参考价值。

python使用Redis数据库

安装依赖

pip3 install redis

直接脚本文件使用

import redis
r = redis.Redis(host='127.0.0.1', port=6379, db=1)

# 基础的脚本文件测试
r.set('name','xu')
r.set('age',18)

半连接池使用

import redis
pool = redis.ConnectionPool(host='127.0.0.1', port=6379, db=10, max_connections=100)
r = redis.Redis(connection_pool=pool)

cache缓存使用,要额外安装django-redis

pip install django-redis
# settings.py配置文件夹中
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": 100}
        }
    }
}


#操作cache模块直接操作缓存:views.py
from django.core.cache import cache  # 结合配置文件实现插拔式
# 存放token,可以直接设置过期时间
cache.set('token', 'header.payload.signature', 10)
# 取出token
token = cache.get('token')

以上是关于python使用Redis的主要内容,如果未能解决你的问题,请参考以下文章

Python 向 Postman 请求代码片段

python使用上下文对代码片段进行计时,非装饰器

python常用代码片段总结

13 个非常有用的 Python 代码片段

在 Python 多处理进程中运行较慢的 OpenCV 代码片段

python 有用的Python代码片段