Redis教程

022 云软公共类(03 redis接口)

本文主要是介绍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接口)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!