2
votes
6answers
74 views
couchdb vs mysql speed
What can you tell about speed of couchdb and mysql databases?
I mean, very simple requests like getting one row (or one document) by unique id and simple requests like getting the …
1
vote
3answers
94 views
CouchDB a real world example
Hello stackoverflow gurus,
Tonight in my daily tech googling I came across couchDB, after seeing tons of presentations about how it perform ten to hundred times better then any RD …
0
votes
1answer
57 views
Nested databases in CouchDB
It seems you are unable to nest databases in CouchDB. How do people work around this limitation? For example, assume I want to create a blogging engine where each domain has a sepa …
1
vote
2answers
36 views
What is the idiomatic way to implement foreign keys in CouchDB?
Let me state a simple example: You have an Order and a Shopping Cart. One way I envision persisting this is to save an Order document and a Cart document. The Order document could …
0
votes
2answers
44 views
Multiple CouchDB Document fetch with couchdb-python
How to fetch multiple documents from CouchDB, in particular with couchdb-python?
3
votes
4answers
197 views
Which key:value store to use with Python?
So I'm looking at various key:value (where value is either strictly a single value or possibly an object) stores for use with Python, and have found a few promising ones. I have no …
1
vote
3answers
148 views
What are the use cases for non relational datastores?
I'm looking at using CouchDB for one project and the GAE app engine datastore in the other. For relational stuff I tend to use postgres, although I much prefer an ORM.
Anyway, …
15
votes
7answers
392 views
Anatomy of a Distributed System in PHP
I've a problem which is giving me some hard time trying to figure it out the ideal solution and, to better explain it, I'm going to expose my scenario here.
I've a server that …
0
votes
1answer
24 views
How do you use CouchDB Change Notifications Continuous Changes from Java?
I am trying to use the couchdb (continuous) changes API from Java and find that after exhausting the list of current changes the stream seems to be closed, not stay open forever as …
3
votes
2answers
70 views
Understanding Key-Value stores
I'm trying to wrap my head around Key-Value stores like CouchDB and Cassandra. I understand why they're useful but as far as how they replace a RDBMS like MySql, I don't get it.
L …
2
votes
2answers
103 views
Which Python client library should I use for CouchdB?
I'm starting to experiment with CouchDB because it looks like the perfect solution for certain problems we have. Given that all work will be on a brand new project with no legacy …
0
votes
3answers
37 views
Meaning of forEach(function(tag) in JavaScript
Hello,
I came across the following code fragment in a CouchDB book.
function(doc) {
doc.tags && doc.tags.forEach(function(tag) {
emit(tag, 1);
});
}
Can some on …
4
votes
1answer
64 views
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 the equivalent of the COUNT(*) SQL aggregator function for CouchDB datasets …
3
votes
4answers
293 views
What is couchdb, for what and how should I use it?
I hear a lot about couchdb, but after reading some documents about it, I still don't get why to use it and how.
Could you clarify this mystery for me?
1
vote
2answers
63 views
CouchDB view question
What am I missing here?
When I access /mydatabase/_design/assets/_view/all (CouchDB) I'm getting:
"{"error":"EXIT","reason":"{function_clause,\n [{couch_httpd,handle_db_reques …
