37 lines
865 B
Python
37 lines
865 B
Python
"""
|
||
@Time : 2022/11/15 10:13
|
||
@Auth : 东
|
||
@File :global_var.py
|
||
@IDE :PyCharm
|
||
@Motto:ABC(Always Be Coding)
|
||
@Desc:
|
||
|
||
"""
|
||
import json
|
||
from app.utils.redis_config import redis_client
|
||
|
||
|
||
def _init(): # 初始化
|
||
dict = {}
|
||
redis_client.__setattr__("_global_dict", json.dumps(dict))
|
||
|
||
|
||
def set_value(key, value):
|
||
# 定义一个全局变量
|
||
dict = redis_client.get_redis().get("_global_dict")
|
||
if dict is None:
|
||
dict = {}
|
||
dict[key] = value
|
||
# redis_client.get_redis().set("_global_dict", json.dumps(dict))
|
||
redis_client.__setattr__("_global_dict", json.dumps(dict))
|
||
|
||
|
||
|
||
def get_value(key):
|
||
# 获得一个全局变量,不存在则提示读取对应变量失败
|
||
try:
|
||
return redis_client.get_redis().get("_global_dict")[key]
|
||
except Exception as e:
|
||
print(e)
|
||
print('读取' + key + '失败\r\n')
|