UnQLite - An Embeddable NoSQL Database Engine
31–40 of 88 posts
Re: UnQLite - An Embeddable NoSQL Database Engine
#32http://en.wikipedia.org/wiki/Dbm#Successors
I'm yet to see a good replacement to Kyoto cabinet both in terms of ease of use and performance. I feel it'd be better energy to pick up kyoto cabinet and maintain it than re-write something from scratch.
Re: UnQLite - An Embeddable NoSQL Database Engine
#33Re: UnQLite - An Embeddable NoSQL Database Engine
#34Nice, I'm currently using SQLite for key value storage, because there aren't better light options afaik. Python shelve module is totally useless with multi gigabyte tables and millions of keys.
It's a real question because I haven't actually used them. SQLite is fine, but if you don't need sql they probably fare better.
Re: UnQLite - An Embeddable NoSQL Database Engine
#35Is this what Richard Hipp was working on? It doesn't sound like what I remember hearing about back in 2011, but maybe things changed and I missed the news?
Re: UnQLite - An Embeddable NoSQL Database Engine
#36Can anyone recommend one?
Re: UnQLite - An Embeddable NoSQL Database Engine
#37I would love an embeddable nosql database engine but this isn't it. I'm looking for something like MongoDB but embeddable. RaptorDB comes close but it doesn't have full support for Mono yet. https://raptordb.codeplex.com/ Can anyone recommend one?
Where and how would you use it? What, if anything, do you currently use in its place? If nothing, is there something you could use instead? Why is it better than a serializing your own domain model (assuming you have a domain model), or other alternatives?
Re: UnQLite - An Embeddable NoSQL Database Engine
#38I would love an embeddable nosql database engine but this isn't it. I'm looking for something like MongoDB but embeddable. RaptorDB comes close but it doesn't have full support for Mono yet. https://raptordb.codeplex.com/ Can anyone recommend one?
The default BLOB limit is around 1GB.
Re: UnQLite - An Embeddable NoSQL Database Engine
#39Since the Jx9 language is fully embedded (even stated as " All C source code for UnQLite and Jx9 are combined into a single source file."), they seem to contradicting their own licensing. The resulting library would also retain the copyleft SPL license.
The base code may be BSD, but incorporating the whole database into your code infects it with their SPL too.