8 ms·
It depends on what you mean when you say you want it to "support queries", but then also ask for a "nosqldb". It really depends on whether you want a full quer
by diek 7y ago
It depends on what you mean when you say you want it to "support queries", but then also ask for a "nosqldb". It really depends on whether you want a full query grammar (in that case, why not SQL?), or if a key/value store is enough.
I use lmdb pretty extensively. It is single-file (well, it has a lock file) key/value store, can be read-from/written-to by multiple processes, and embeds nicely. It has Python bindings, but I've only used it from C.
https://symas.com/lmdb/ https://symas.com/lmdb/
- mlevental 7y agoi'm imagining something like the sqlite for mongo. ie you can do aggregations and nested k/v queries and filters and things like that.