针对值列表的Aerospike AQL查询

时间:2017-08-28 17:28:45

标签: aerospike aql

在AQL中,我可以做到

select * from ns.set where PK='some val'

如何查询值列表?像

这样的东西
select * from ns.set where PK in ('val1', 'val2'...)

当尝试运行上面的代码时,我得到'不支持的命令格式'

1 个答案:

答案 0 :(得分:3)

AQL不支持。

Aerospike客户端(您将在生产中使用的内容)支持此功能。它叫批量索引读。 http://www.aerospike.com/docs/guide/batch.html