day04:Redis和店铺营业状态设置
from redis import Redis
# 假设Redis已经安装并且运行在默认端口
redis_client = Redis(host='localhost', port=6379, db=0)
# 设置店铺的营业状态
def set_shop_status(shop_id, status):
# 使用SET命令设置键值对,其中键是'shop:state:{shop_id}',值是状态
redis_client.set(f'shop:state:{shop_id}', status)
# 获取店铺的营业状态
def get_shop_status(shop_id):
# 使用GET命令获取键对应的值
return redis_client.get(f'shop:state:{shop_id}')
# 示例:设置店铺123的营业状态为'open'
set_shop_status(123, 'open')
# 示例:获取并打印店铺123的营业状态
status = get_shop_status(123)
if status:
print(f"Shop 123's status is: {status.decode('utf-8')}")
else:
print("Shop 123's status is unknown.")
这段代码使用了redis-py
库与Redis服务器进行交互。set_shop_status
函数用于设置特定店铺的营业状态,而get_shop_status
函数用于获取这个状态。这里使用了f-string
来构造Redis中的键,并且在获取状态时,由于从Redis获取的是字节字符串,所以使用decode('utf-8')
将其转换为字符串格式。
评论已关闭