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!