Top "Couchdb" questions

Apache CouchDB is a document-oriented database that can be queried and indexed in a MapReduce fashion.

What is the CouchDB equivalent of the SQL COUNT(*) aggregate function?

Yep, I'm a SQL jockey (sorta) coming into the CouchDb Map/Reduce world. I thought I had figured out how …

couchdb
How do I change the database file location for couchdb?

I've got couchdb installed from a package manager (Ubuntu, 10.04), but the partition where couchdb is installed is not especially big (~5…

couchdb
How to install and use couch db in android

How i should install and use couch Db in android. I mean local couch Db which i can use in …

android couchdb couchbase
Retrieve just deleted document

I deleted a document but I can still see it in _changes, so I can see last valid _rev, which …

couchdb
Choosing MongoDb/CouchDb/RavenDb - performance and scalability advice

We are looking at a document db storage solution with fail over clustering, for some read/write intensive application. We …

mongodb couchdb ravendb document-database nosql
How to map clojure code to and from JSON?

I have a crazy idea, which involves putting some clojure code into CouchDB and writing views that query it. I …

json clojure lisp couchdb
Sorted String Table (SSTable) or B+ Tree for a Database Index?

Using two databases to illustrate this example: CouchDB and Cassandra. CouchDB CouchDB uses a B+ Tree for document indexes (using …

database indexing nosql couchdb cassandra
How to Secure CouchDB

CouchDB access as a rest service seems insecure. Anyone can hit the database and delete/add documents once it is …

security couchdb restful-authentication
How can I delete multiple documents in CouchDB?

I want to delete all documents where foo equals x. Seems like a pretty basic operation, but I just can't …

couchdb
How to pass two parameter values to couchdb views?

I want to reproduce this SQL in CouchDB views. SELECT name,department FROM Persons where id = ? and group_id = ? ; How …

sql couchdb language-comparisons