-
Key Value Store
Wondering if anyone has ever tried to implement a dedicated key value store in kdb+, something like levelDB.
I have a situation where users wish to perform a lookup by an alphanumeric string but I don’t know which date partition contains the associated record in advance. Clearly I need to avoid an exhaustive search across all date partitions. If I had a lookup of string to date that would help narrow the search.
I’ve tried using a keyed table, stored as a flat file, but it’s not scalable in terms of memory. I could hold the past months worth in memory and that would satisfy 90% of the queries but I need something more general with constant lookup time. I’d also like to avoid having to introduce another technology
Log in to reply.