Problem modelation

Hello guys!

I am currently working on a project written in C, where i need to use a caching solution to store C structures. For example {a=1, b=2, c=“storm”, d = “chicago”, e = 234.56}.

Actually, i’m interested in storing these kind of records without any kind of key associated to it, like a “record Knapsack” where i would query like Select from “record Knapsack” where a=1 and d= chicago orderby e. Is it possible?

Thank you!

Aerospike secondary index queries currently only support one filter (equals or range). Compound filters are not currently supported.

Thank you Brian. I guess i’ll have to try other approach.