针对值列表的 Aerospike AQL 查询
Aerospike AQL Query Against List of Values
在 AQL 中我可以做到
select * from ns.set where PK='some val'
如何查询值列表?像
select * from ns.set where PK in ('val1', 'val2'...)
当尝试 运行 上面的代码时,我得到 'Unsupported command format'
AQL 不支持。
Aerospike 客户端(您将在生产中使用的客户端)支持此功能。它称为批量索引读取。 http://www.aerospike.com/docs/guide/batch.html
在 AQL 中我可以做到
select * from ns.set where PK='some val'
如何查询值列表?像
select * from ns.set where PK in ('val1', 'val2'...)
当尝试 运行 上面的代码时,我得到 'Unsupported command format'
AQL 不支持。
Aerospike 客户端(您将在生产中使用的客户端)支持此功能。它称为批量索引读取。 http://www.aerospike.com/docs/guide/batch.html