gpt4 book ai didi

redis - 复杂的数据结构 Redis

转载 作者:IT王子 更新时间:2023-10-29 05:54:13 27 4
gpt4 key购买 nike

假设我有一个哈希的哈希,例如

$data = {
'harry' : {
'age' : 25,
'weight' : 75,
},
'sally' : {
'age' : 25,
'weight' : 75,
}
}
  1. 存储这种数据结构的“常规”方法是什么(或者你不会?)
  2. 您能否直接获取一个值(例如获取 harry : age ?
  3. 一旦存储,您可以直接更改子键的值(例如 sally : weight = 100)

最佳答案

What would the 'usual' way to store such a data structure (or would you not?)

例如,harry 和 sally 将分别存储在单独的 hashes 中其中字段将代表他们的属性,如年龄和体重。那么set结构将包含您存储在 redis 中的所有成员(harry、sally、...)。

Would you be able to directly get a value (e.g. get harry : age ?)

是的,参见 HGETHMGETHGETALL .

Once stored could you directly change the value of a sub key (e.g. sally : weight = 100)

是的,参见 HSET .

关于redis - 复杂的数据结构 Redis,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8810036/

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