gpt4 book ai didi

python - Redis 命名空间

转载 作者:IT王子 更新时间:2023-10-29 06:00:50 26 4
gpt4 key购买 nike

我想将一个 key 存储在两个不同的“ namespace ”中。例如:

r.set('1', 'Hello') # in the N1 set
r.set('1', 'Goodbye') # in the N2 set

我将如何在 Redis 中执行此操作?也就是说,我将如何创建它,然后如何获取它?

最佳答案

REDIS 对象的典型命名约定是 "{object_type}:{id}"(和 "{object_type}:{id}:{field}")。例如你可以这样做:

r.set('greeting:1', 'Hello') 
r.set('farewell:1', 'Goodbye')

关于python - Redis 命名空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29158618/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com