Tagged Questions

14
votes
6answers
1k views

How to stop thinking “relationally”

At work, we recently started a project using CouchDB (a document-oriented database). I've been having a hard time un-learning all of my relational db knowledge. I was wondering how some of you ...
5
votes
2answers
279 views

Are there any Design Guidelines for Documental Databases?

Just wondering if there are any kind of guidelines for when you are designing a document-oriented db and I am talking especially about CouchDb. I know that being schemaless things can take the shape ...
4
votes
2answers
1k views

Join/sum with CouchDB

Using CouchDB, I currently have a document which represents an idea, you can rate this idea. Every idea is one document and every rating is a different document. I am doing this like this to avoid ...
4
votes
4answers
1k views

How to build “Tagging” support using CouchDB?

I'm using the following view function to iterate over all items in the database (in order to find a tag), but I think the performance is very poor if the dataset is large. Any other approach? def ...
3
votes
3answers
143 views

couchdb good for this case?

I am looking to create a cv bank which when i think about it in terms of storing the data in a relational database the complexity is pretty apparent. Would couchdb make better sense in this case? ...
3
votes
3answers
229 views

Does this schema sound better suited for a document-oriented data store or relational?

Disclaimer: let me know if this question is better suited for serverfault.com I want to store information on music, specifically: genres artists albums songs This information will be used in a ...
1
vote
2answers
446 views

GeoCouch / Couchdb / Other as searchable document-oriented db?

I would like to use a document oriented db to store data from a feed. Sometimes that feed contains Geo-spacial data and I would like to be able to search on it. I've found GeoCouch but wonder if it ...
0
votes
0answers
10 views

Is there anything wrong with creating a Couch DB view with null values?

I've been doing a fair amount of work with Couch DB in my spare time recently, and really enjoy using it. I find it to be much more flexible than using a relational database, but it's not without it's ...