Lightweight NoSQL DB database supporting REST and JSON

Just looking for a NoSQL database as compact as SQLite, supporting REST and JSON, preferably implemented in C / C ++ and capable of full-text search. Can you recommend it?

+6
source share
2 answers

You might want LevelDB , a fast library for storing key values ​​written in Google, which provides an orderly comparison of string keys with string values, you can use it as a separate file database. Support for many languages ​​(C / C ++, Ruby, Java).

Also check out the Kyoto cabinet , lightweight database library, direct DBM implementation, key storage, offline file database (also in memory), multi-language support (Ruby, Java, C #, PHP, etc.).

+3
source

Check out MongoDB ; It is written in C ++.

You can also check out CouchDB , but it is written in Erlang.

+2
source

Source: https://habr.com/ru/post/903999/


All Articles