我有一个问题 - 在索引中查找键值对 - 比如说在 cassandra 或 postgres 上 - 通常在 O(logn) 左右
来源:https ://github.com/tinkerpop/blueprints/wiki/Graph-Indices 。
在 redis 文档中,它指出运行时复杂度为 O(1)。
来源:http ://redis.io/commands/get http://redis.io/commands/hget
并且获取多个键的值只是线性 O(m),其中 m 是检索到的键的数量 http://redis.io/commands/hmget
这怎么可能?