Tagged Questions
The document-oriented-db tag has no wiki summary.
49
votes
6answers
6k views
What are your thoughts on Raven DB? [closed]
What are your thoughts on Raven DB?
How do I go about using Raven DB for data storage in a shared web hosting environment, since Raven DB is interacted with through HTTP?
Are there any areas that ...
16
votes
7answers
1k views
Are document-oriented databases meant to replace relational databases?
Recently I've been working a little with MongoDB and I have to say I really like it. However it is a completely different type of database then I am used. I've noticed that it is most definitely ...
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 ...
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 ...
8
votes
3answers
1k views
Anyone using RavenDB in a production environment?
I'm doing research on the maturity of some document-oriented stores, which includes an overview of applications and websites that use the database in production environments. There are several lists ...
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 ...
5
votes
1answer
214 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 ...
5
votes
2answers
897 views
Embedded analog of CouchDB, same as sqlite for SQL Server
I like an idea of document oriented databases like CouchDB. I am looking for simple analog.
My requirements is just:
persistance storage for schema less data;
some simple in-proc quering;
good to ...
4
votes
2answers
134 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 ...
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
2answers
184 views
MongoDB Update / Upsert Question - Schema Related
I have an problem representing data in MongoDB. I was using this schema design, where a combination of date and word is unique.
{'date':2-1-2011,
'word':word1'
users = [user1, user2, user3, ...
3
votes
1answer
104 views
Hosting an in-process document database on Windows
Are there any document-databases, similar to MongoDB, that run within an ASP.NET web application, and could be hosted on a server without any unique machine configuration?
I'm asking this because the ...
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
2answers
276 views
What open source document-oriented database system is most mature for Windows usage?
After using relational databases as back-end storage all my Windows programming life (currently .NET), I want to experiment with a document-oriented database by this Wikipedia definition; it can be ...
3
votes
3answers
228 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 ...
3
votes
1answer
524 views
Are document-oriented databases any more suitable than relational ones for persisting objects?
In terms of database usage, the last decade was the age of the ORM with hundreds competing to persist our object graphs in plain old-fashioned RMDBS. Now we seem to be witnessing the coming of age of ...
3
votes
3answers
758 views
Relations in Document-oriented database?
I'm interested in document-oriented databases, and I'd like to play with MongoDB. So I started a fairly simple project (an issue tracker), but am having hard times thinking in a non-relational way.
...
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
1answer
125 views
do document-oriented databases have integrity?
I'm coming from a MySQL background, and I'm interested in document-oriented databases, specifically CouchDB. One of the things I'm interested in is data integrity. How do document-oriented databases ...
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
46 views
How to re-model the existing data model for a document oriented db like ravendb or mongodb
Assume the following scenario (with relational databases),
class Currency
{
long id;
String code;
String name;
}
class OrderGroup
{
long id;
Collection<Order> Orders;
}
class Order
{
long ...
1
vote
1answer
184 views
Any document oriented database fit for 512M VPS
I have heard that mongodb use many memory, but I haven't much memory, I need run 2 or 3 apps on a 512M VPS, I want know are there any alternative choice, have easy to use API, and nodejs binding, and ...
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 ...
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 ...
1
vote
1answer
56 views
Document Oriented DB for AIR?
Today I just learned that Adobe Air has a local SQL database, which is great; however, we had been creating xml/json files to handle mostly everything. Rather than re-architect to gain a few new ...
1
vote
1answer
109 views
Recommended database backend for blog
Greetings,
I'm building my personal website using php. My standard approach is to use MySQL as a database backend. I've been hearing a lot about document orienting databases and I'm wondering if ...
0
votes
1answer
30 views
PyMongo and toArray() method
I need to make some benchmarks on a small database (64MB) and I need to figure out what is the smartest way to fetch whole Mongo collection into python object with PyMongo? In JavaScript, there is ...
0
votes
2answers
143 views
Document-oriented dbms as primary db and a RDBMS db as secondary db?
I'm having some performance issues with MySQL database due to it's normalization.
Most of my applications that uses a database needs to do some heavy nested queries, which in my case takes a lot of ...
0
votes
0answers
135 views
Optimize search efficiency with mongoDB nested collection?
Let us suppose we have the next data structure:
{
{
"name" : "ElementName1",
"index" : [
{"name" : "key1", "value" : 1},
{"name" : "key2", "value" : 2},
...
0
votes
1answer
86 views
How to create pseudo document oriented model?
Currently, I am using Rails with Mysql as the backend. Unfortunately, my application has scaled in data which was not expected or foreseen when it started. Now, I am facing a lot of performance issues ...
0
votes
2answers
225 views
Document-oriented database (MongoDB?) and invoicing/ordering?
New to document-oriented database concepts and have a few high-level questions related to orders and order processing.
How does one capture an order in this world? Would an order just be a new ...
0
votes
1answer
197 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 ...
0
votes
1answer
63 views
Benefits of Document Orriented DBs to an existing folder structure
I would like to preface by saying I guess there is no real tangible problem, but I feel odd not having some system managing these things.
We currently have a large amount of XML files located in ...
0
votes
0answers
84 views
document oriented databases [closed]
Possible Duplicate:
What's the Attraction of Schemaless Database Systems?
What are the advantages of document oriented databases over relational databases?
Where should i use document ...