Aerospike:如何对二级索引执行 IN 查询
Aerospike: How to perform IN query on secondary index
如何在辅助索引上的 aerospike 中执行(sql 类似)IN 查询。为此我们需要一个 UDF 吗?
像这样:Select * 来自 ns.set where si_bin in (1,2,3)
java aerospike 客户端有什么可用的吗?
PS:不需要范围查询或那种排序。
您可以使用谓词过滤。 https://www.aerospike.com/docs/guide/predicate.html
Python 客户端 documentation for predicate filtering 有使用 aerospike.predexp
助手的示例。
Java 客户端在回购中有 examples for class PredExp
。
如何在辅助索引上的 aerospike 中执行(sql 类似)IN 查询。为此我们需要一个 UDF 吗?
像这样:Select * 来自 ns.set where si_bin in (1,2,3)
java aerospike 客户端有什么可用的吗?
PS:不需要范围查询或那种排序。
您可以使用谓词过滤。 https://www.aerospike.com/docs/guide/predicate.html
Python 客户端 documentation for predicate filtering 有使用 aerospike.predexp
助手的示例。
Java 客户端在回购中有 examples for class PredExp
。