1
vote
Common Interface for CouchDB and Amazon S3
Technically a common layer is possible. However I question that this would make sense.
Couchdb has integrated map/reduce functions for your documents which are exposed as "views". I don't think Si …
1
vote
How do I perform a parameterized query on CouchDB
Technically this is possible of you emit for each document each set of the powerset of the tags of the document as the key. The key set element must be ordered and your query whould have to query t …
1
vote
Is there a hosted CouchDB service provider?
As the transport layer of couchdb transport JSON via REST over HTTP a unix couchdb server is perfectly accessible from a windows .net client.
To get started you can pick a Amazon EC2 AMI f …
0
votes
Does CouchDB support multiple range queries?
You're using arrays as your keys. Couchdb will compare arrays by comparing each array element in increasing order until two element are not equal.
E.g. to compare [1,'a',5] and …
0
votes
CouchDB Views: created_at greater than a passed value
Please mind that couchdb works only on json values. If the timezone if the document stored in couchdb is different to the timezone of your startkey the query likely will fail.
…
2
votes
Can I do transactions and locks in CouchDB?
A design pattern for restfull transactions is to create a "tension" in the system. For the popular example use case of a bank account transaction you must ensure to update the total for both involv …
