Is there any established noSQL database solution to be used for developing native mobile applications (Android and/or iOs)?
|
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 |
|||
|
|
|
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. |
|||
|
|
|
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?
in short, you can just use SQLite as a 'small NoSQL' if you want. it's quite fast too. |
|||||||||
|
|
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. |
|||
|
|
|
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 |
|||
|
|
If anyone is still interested, I have found this two wrappers for TokyoCabinet: Anyway, I think LevelDB is better. |
|||
|
|