1
vote
3answers
40 views
Comparing ruby hashes
Hi
I have two ruby hashes (which are essentially models) and am trying to find the differences between them, one is an old instance of an object where the other has new values ass …
2
votes
6answers
158 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
172 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
94 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 …
3
votes
5answers
320 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?
3
votes
3answers
133 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 …
16
votes
7answers
422 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 …
3
votes
4answers
253 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
2answers
57 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
78 views
Multiple CouchDB Document fetch with couchdb-python
How to fetch multiple documents from CouchDB, in particular with couchdb-python?
1
vote
3answers
158 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, …
3
votes
2answers
98 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 …
0
votes
1answer
37 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 …
0
votes
3answers
43 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
81 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 …
