022 云软公共类(03 redis接口)
2022/4/13 19:12:57
本文主要是介绍022 云软公共类(03 redis接口),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
redis接口用于获取配置文件中的缓存数据库别名,并进行存取。代码如下:
#!/usr/bin/env python # -*- coding: UTF-8 -*- """ 路径 : ys_redis.py 标题 : 云软redis接口 创建 : 2022-04-13 12:52 更新 : 2022-04-13 12:52 编写 : 陈倚云 """ VERSION = (4, 11, 0) __version__ = '.'.join(map(str, VERSION)) """ 1 存入redis数据 conn = get_redis_connection('sms_codes') ret = conn.set('name', 'Chengl') 2 获取redis数据 conn = get_redis_connection('sms_codes') name = bytes(conn.get('name')).decode() """ def get_redis_connection(alias='default', write=True): """ 获取redis接口 """ from django.core.cache import caches cache = caches[alias] if not hasattr(cache, "client"): raise NotImplementedError("settings.py中alias访问错误") if not hasattr(cache.client, "get_client"): raise NotImplementedError("settings.py中alias访问错误") return cache.client.get_client(write)
这篇关于022 云软公共类(03 redis接口)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-12-24Redis资料:新手入门快速指南
- 2024-12-24Redis资料:新手入门教程与实践指南
- 2024-12-24Redis资料:新手入门教程与实践指南
- 2024-12-07Redis高并发入门详解
- 2024-12-07Redis缓存入门:新手必读指南
- 2024-12-07Redis缓存入门:新手必读教程
- 2024-12-07Redis入门:新手必备的简单教程
- 2024-12-07Redis入门:新手必读的简单教程
- 2024-12-06Redis入门教程:从安装到基本操作
- 2024-12-06Redis缓存入门教程:轻松掌握缓存技巧