Tagged Questions
9
votes
4answers
1k views
What's the attraction of schemaless database systems?
I've been hearing a lot of talk about schema-less (often distributed) database systems like MongoDB, CouchDB, SimpleDB, etc...
While I can understand they might be valuable for some purposes, in most ...
5
votes
2answers
281 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 ...
5
votes
1answer
215 views
Document-oriented database - What if the document definitions change?
As I understand it, you can enter any non-structured information into a document-oriented database. Let's imagine a document like this:
{
name: 'John Blank',
yearOfBirth: 1960
}
Later, in a new ...
4
votes
2answers
135 views
Is it possible to use RDF storage also as a document-oriented database?
Suppose I have a large ammount of heterogeneous JSON documents (i.e. named key-value mappings) and a hierarchy of classes (i.e. named sets) that these documents are attached to. I need to set up a ...
4
votes
1answer
146 views
Do any of the major document-oriented database systems compress keys within their JSON documents?
I would like to store a large number of JSON documents using a documented-oriented database, all with very similar schema (though not identical).
One example document:
{
"firstName": "John",
...
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 ...
3
votes
3answers
230 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 ...
2
votes
1answer
60 views
Is there anything wrong with creating Couch DB views 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 ...
2
votes
2answers
2k views
Mongo DB relations between objects
I'm trying to implement blog post storage using mongo db.
I've got two domain entities:
"Blog post" and "Author"
Currently I've added AuthorId property to blog post entity. Is that the right ...
2
votes
2answers
232 views
What is the benefit of using a “document-oriented DBMS”?
I must be missing something, because everything I've seen so far suggests that it isn't any more interesting than a single table for storing blobs and a second table for tags that apply to it.
Now I ...
1
vote
0answers
54 views
NoSql update mechanism for CRUD scenarious
I have experience on Orm Frameworks and i start to understand structure of NoSql database solutions.I will go on with some samples based on object models.
I have below document model and i want to ...
1
vote
1answer
51 views
Are DocumentStores (alone) good for searching documents?
I am currently thinking how to best store web-crawling results in a database. In another question document-oriented databases were recommended to use for a web-crawler project: Database for web ...
0
votes
1answer
198 views
Any good document-oriented DB for Windows desktop besides MongoDB, etc?
I've been searching for a document-oriented DB that for a Windows desktop program. MongoDB seems to be the best one so far, because it's smaller (11MB) and simpler when compared to CoachDB (which is ...