Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我在 STATUS 列上有二级索引,我想获取所有具有 STATUS='processed' 的键(在某个范围内)。我怎么能在不阅读任何专栏的情况下做到这一点?我只需要键列表,因此只能访问索引(每个节点一次磁盘搜索而不是 2 个)。
用户不能直接访问二级索引,因此您需要对已编制索引的 CF 运行索引查询并获取键。如果您想保证只有一次磁盘搜索,您需要创建自己的索引(即包含所有“已处理”键的 CF),以便您可以直接查询它。