Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any established noSQL database solution to be used for developing native mobile applications (Android and/or iOs)?

share|improve this question

6 Answers

up vote 4 down vote accepted

I don't think there's an established NoSQL backend for native mobile apps, but CouchDB is a great NoSQL database with implementations for both iOS and Android.

iOS: http://www.couchbase.com/products-and-services/mobile-couchbase

Android (last updated April 17, 2011): https://market.android.com/details?id=com.arandomurl.couchdb

share|improve this answer

leveldb is the new kid on the block. It's a key'/value store much like BigTable, but designed for embedded devices. Their license is New BSD, which is much better than the LGPL in Tokyo Cabinet.

It's blazingly fast and build right out of Xcode.

share|improve this answer

I wouldn't be surprised if there's a Tokyo Cabinet port for mobile OSs; but seriously, what would NoSQL bring over the SQLite library already included in every platform?

  • simple semantics. it's just as easy to do key/value in SQL as it's on any NoSQL database
  • scalability. a multipetabyte-capable phone doesn't qualify as a mobile platform.
  • trivial sharding. clusters of phones aren't so popular yet
  • small implementation. tokyo cabinet source code is 4.8MB, SQLite is 4.7MB. no real gain (and it's already there).

in short, you can just use SQLite as a 'small NoSQL' if you want. it's quite fast too.

share|improve this answer
10  
What about schema-less data models, document databases, graph data structure, multi-column databases, replication? – Jeff May 8 '11 at 2:01
1  
schema-less and document databases are little more than key-value and 'store a {XML|JSON} document in the value'. replication... on a phone? column databases are for big data (on small data and non-magnetic storage row and column databases are equivalent) graph data... that's interesting, but again, with small datasets, CPU power is vastly more than enough to do on top of record-based data. – Javier May 8 '11 at 4:54

CouchDB is frequently advertised as a NoSQL DB for mobile apps because of its synchronization capabilities. Also there is a beta release of Mobile Couchbase.

share|improve this answer

for android there's this:

http://code.google.com/p/waspdb/

it's an alpha stage for now, but it could fit your request.

aw4y

share|improve this answer
looked interesting, but it's hard to bet on something labeled as alpha :( – Jeffrey Blattman Mar 5 at 17:13

If anyone is still interested, I have found this two wrappers for TokyoCabinet:

Anyway, I think LevelDB is better.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.