Earlier quoted context omitted.
I've got truly offline replication (as in you can run me on Android and your laptop and keep them synced via the cloud). Also, none of the other NoSQLs are really set up for schemaless queries like I am. Incremental map-reduce lets you normalize a bunch of different heterogenous document structures in your view, which is more flexible than the key-path indexes Mongo has, and more real-time than Hadoop/Google style ma…
Offline on Android support sounds really amazing. I'm poking around DroidCouch and only see a wrapper for the CouchDB REST API: http://github.com/sig/DroidCouch Should I be looking at another project for offline support?
CouchDB 1.0
61–70 of 76 posts
Re: CouchDB 1.0
#62Earlier quoted context omitted.
couch hits a number of sweet spots. Documents can have attachments so you can build a complete application out of html,css, and javascript and have the entire app reside in a couch database. Coupled with P2P replication this make for some interesting possibilities. couch also inherits a lot from it's choice of implementation language, Erlang, and it's append-only storage design. A high level functional language such…
Are there any examples of applications being wholly hosted inside Couch?
Re: CouchDB 1.0
#63Earlier quoted context omitted.
couch hits a number of sweet spots. Documents can have attachments so you can build a complete application out of html,css, and javascript and have the entire app reside in a couch database. Coupled with P2P replication this make for some interesting possibilities. couch also inherits a lot from it's choice of implementation language, Erlang, and it's append-only storage design. A high level functional language such…
Are there any examples of applications being wholly hosted inside Couch?
Re: CouchDB 1.0
#64Re: CouchDB 1.0
#65 * More efficient header commits.
* Use O_APPEND to save lseeks.
* Faster implementation of pread_iolist(). Further improves performance on concurrent reads.
* Added authentication caching
* Faster default view collation.
* Added option to include update_seq in view responses.
from http://couchdb.apache.org/downloads.htmlRe: CouchDB 1.0
#66Re: CouchDB 1.0
#67Re: CouchDB 1.0
#68Earlier quoted context omitted.
couch hits a number of sweet spots. Documents can have attachments so you can build a complete application out of html,css, and javascript and have the entire app reside in a couch database. Coupled with P2P replication this make for some interesting possibilities. couch also inherits a lot from it's choice of implementation language, Erlang, and it's append-only storage design. A high level functional language such…
Are there any examples of applications being wholly hosted inside Couch?
Re: CouchDB 1.0
#69Earlier quoted context omitted.
couch hits a number of sweet spots. Documents can have attachments so you can build a complete application out of html,css, and javascript and have the entire app reside in a couch database. Coupled with P2P replication this make for some interesting possibilities. couch also inherits a lot from it's choice of implementation language, Erlang, and it's append-only storage design. A high level functional language such…
Are there any examples of applications being wholly hosted inside Couch?
For what it's worth, I must say that I was very impressed today with how much 'better behaved' this release was in comparison to bother previous "major" releases (0.11 for example) _and_ recent trunk snapshots. In particular, they seem to have ironed out the nagging dependency issues couch had displayed on debian-based installations and are now reliably passing all of the unit / end-to-end tests.
Great work.