HMSET 和字段值

HMSET and field value

我对 HMSET 非常困惑。

如果我用 'N' 个(字段值)... 对创建一个 HMSET,那么

  1. 我可以在 O(1) 时间内访问 'field' 中的值吗? (文档说 "Time complexity: O(N) where N is the number of fields being requested." )。所以访问一个字段应该是 O(1)。它的行为就像一本字典吗?这个假设正确吗?

是 - 哈希在访问单个字段时表现出 O(1) 的复杂性。