NoSQL DB for Android except MongoDB and CouchDB?

Is there any better NoSQL DB for Android besides CouchDB and MongoDB. Using couchdb, the problem is its launch time on Android devices that take 5-10 seconds (very high) .

On the other hand, I found TouchDB , which is not yet mature enough to use it.

I want to store whole data in NoSQL DB in JSON format (both on the Internet and on an Android phone). Am I some kind of database that has startup time in milliseconds and stores data in JSON format ?

+4
source share
2 answers

Two options are possible:

+3
source

you have many options, you can use iBoxDB.java if you use java, or iBoxDB for mono if using C #.
iBoxDB stores data in map format; it is easily converted to JSON. iBoxDB includes replication (an example in Test.java), so if you just want to do synchronization data, you don't need JSON.

+2
source

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


All Articles