Skip to content
This repository has been archived by the owner on Mar 9, 2022. It is now read-only.

Latest commit

 

History

History
53 lines (34 loc) · 2.9 KB

README.md

File metadata and controls

53 lines (34 loc) · 2.9 KB

TouchDB

by Jens Alfke (jens@couchbase.com)

TouchDB is a lightweight CouchDB-compatible database engine suitable for embedding into mobile or desktop apps. Think of it this way: If CouchDB is MySQL, then TouchDB is SQLite.

By "CouchDB-compatible" I mean that it can replicate with CouchDB and Couchbase Server, and that its data model and high-level design are "Couch-like" enough to make it familiar to CouchDB/Couchbase developers. Its API will not be identical and it may not support some CouchDB features (like user accounts) that aren't useful in mobile apps. Its implementation is not based on CouchDB's (it's not even written in Erlang.) It does support replication to and from CouchDB.

By "suitable for embedding into mobile apps", I mean that it meets the following requirements:

  • Small code size; ideally less than 256kbytes. (Code size is important to mobile apps, which are often downloaded over cell networks.)
  • Quick startup time on relatively-slow CPUs; ideally 100ms or less.
  • Low memory usage with typical mobile data-sets. The expectation is the number of documents will not be huge, although there may be sizable multimedia attachments.
  • "Good enough" performance with these CPUs and data-sets.

And by "mobile apps" I'm focusing on iOS and Android, although there's no reason we couldn't extend this to other platforms like Windows Phone. And it's not limited to mobile OSs -- the initial Objective-C implementation runs on Mac OS as well.

More documentation is available on the wiki.

Requirements

  • It's written in Objective-C.
  • Xcode 4.2 is required to build it.
  • Runtime system requirements are iOS 5+, or Mac OS X 10.7.2+.

License

  • TouchDB is under the Apache License 2.0.
  • FMDB, by Gus Mueller, is under the MIT License.
  • MYUtilities (portions of which are copied into the vendor/MYUtilities directory) is under the BSD License. (But note that I, Jens, wrote MYUtilities and would have no problem re-licensing it under Apache for use here.)

Development Status

Currently [Dec. 2011] pre-alpha, but undergoing full-time development. I hope to have a beta release in early 2012.

Building TouchDB

For full details see the wiki page. The gist of it is:

  1. Clone the TouchDB repository to your local disk.
  2. In that directory run "git submodule init" and then "git submodule update". This will clone the FMDB library (an Objective-C wrapper for sqlite) into vendor/FMDB.
  3. Open the Xcode project and build the "Mac Framework" and/or "iOS Framework" schemes.