Aerospike AQL Query Against List of Values

783 views Asked by At

In AQL I can do

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

How can I query against a list of values? Something like

select * from ns.set where PK in ('val1', 'val2'...)

When trying to run above code I get 'Unsupported command format'

1

There are 1 answers

7
pgupta On BEST ANSWER

Not supported in AQL.

Aerospike clients (what you will use in production) support this functionality. Its called Batch Index Read. http://www.aerospike.com/docs/guide/batch.html