在AQL中,我可以做到
select * from ns.set where PK='some val'
如何查询值列表?像
这样的东西select * from ns.set where PK in ('val1', 'val2'...)
当尝试运行上面的代码时,我得到'不支持的命令格式'
答案 0 :(得分:3)
AQL不支持。
Aerospike客户端(您将在生产中使用的内容)支持此功能。它叫批量索引读。 http://www.aerospike.com/docs/guide/batch.html