Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
6answers
11k views

Pros/cons of document-based databases vs. relational databases

I've been trying to see if I can accomplish some requirements with a document based database, in this case CouchDB. Two generic requirements: CRUD of entities with some fields which have unique ...
11
votes
5answers
161 views

Does it make sense to use the repository pattern with a document database?

I'm currently experimenting with MongoDB. I'm moving from a NHibernate/SQL mindset, and so initially I implemented a repository pattern for data access. This was all looking fine until I started ...
10
votes
2answers
327 views

How would I model data that is heirarchal and relational in a document-oriented database system like RavenDB?

Document oriented databases (particularly RavenDB) are really intriguing me, and I'm wanting to play around with them a bit. However as someone who is very used to relational mapping, I was trying to ...
7
votes
4answers
3k views

Choosing MongoDb/CouchDb/Raven Db - performance and scalability advice

We are looking at a document db storage solution with fail over clustering, for some read/write intensive application. We will be having an average of 40K concurrent writes per Second written to the ...
7
votes
2answers
799 views

Are there any embeddable document database engines for Java? Something similar to MongoDB or CouchDB?

Are there any embeddable document database engines for Java, that do not require separate server. I am looking for something similar to MongoDB or CouchDB.
7
votes
2answers
402 views

How would you implement a revision control system for your models in your prefered db paradigm?

I found out that RCS for models is an interesting problem to solve in the context of data persistence. They are several solution using the django ORM to achieve this django-reversion and AuditTrail ...
6
votes
1answer
540 views

RavenDB Session > 30

If I'm trying to save a list of items I want to save that has a count > 30 I get an error saying The maximum number of requests (30) allowed for this session has been reached. Raven limits the ...
6
votes
6answers
266 views

What are some good, fast persistant storage options for key->value data?

For a small PHP app I am writing, we need to store a large number of records that have a hash key, and a few simple field values ('host', 'path'). eg: '4420ffb32a' => array( 'host' => ...
6
votes
3answers
455 views

Document Databses: Redundant data, references, etc. (MongoDB specifically)

It seems like I run into lots of situations where the appropriate way to build my data is to split it into two documents. Let's say it was for a chain of stores and you were saving which stores each ...
6
votes
2answers
368 views

When developing web applications when would you use a Graph database versus a Document database?

I am developing a web-based application using Rails. I am debating between using a Graph Database, such as InfoGrid, or a Document Database, such as MongoDB. My application will need to store both ...
5
votes
1answer
619 views

I cannot run Enmbedded RavenDB

I was able to successfully run a simple test for RavenDB based on the code found at: http://ravendb.net/tutorials/hello-world Next I tried to run it in an Embedded Manner, but I keep on getting the ...
5
votes
4answers
246 views

Am I missing something about Document Databases?

I've been looking at the rise of the NoSql movement and the accompanying rise in popularity of document databases like mongodb, ravendb, and others. While there are quite a few things about these ...
4
votes
4answers
296 views

Sql Server XML columns substitute for Document DB?

Is it possible to use Sql Server XML columns as a substitute for a real Document DB (such as Couch or Mongo) ? If I were to create a table with a guid PK Id and an XML column for the document. What ...
4
votes
5answers
315 views

Most efficient method for persisting complex types with variable schemas in SQL

What I'm doing I am creating an SQL table that will provide the back-end storage mechanism for complex-typed objects. I am trying to determine how to accomplish this with the best performance. I ...
4
votes
1answer
152 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
6answers
1k views

Delete a key from a MongoDB document using Mongoose

I'm using the Mongoose Library for accessing MongoDB with node.js Is there a way to remove a key from a document? i.e. not just set the value to null, but remove it? User.findOne({}, function(err, ...
4
votes
2answers
613 views

RavenDB: Id Generation For Sub-Documents

I'm trying migrating an existing web application to use RavenDB. I currently have pages in my web application which allow you to view Categories, SubCategories and Resources based on an id in the ...
4
votes
3answers
176 views

Are there any small scale, durable document/object databases?

I have a few .Net projects that would benefit from using a document/object database opposed to a relational one. I think that db4o would be a good choice, but we're not sure how much the cost is. ...
3
votes
3answers
116 views

CouchDB map/reduce by any document property at runtime?

I come from a SQL world where lookups are done by several object properties (published = TRUE or user_id = X) and there are no joins anywhere (because of the 1:1 cache layer). It seems that a document ...
3
votes
2answers
339 views

MongoDB: storage & when to use relationships

I'm new to MongoDB, so please bear with me. I have 2 questions: First, take the following: // add a record $obj = array( "title" => "Calvin and Hobbes", "author" => "Bill Watterson" ); Does ...
3
votes
1answer
108 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 ...
2
votes
2answers
75 views

document database with search features

Does anybody know if any of the document databases offers good search features? I see RavenDb is using Lucene.net to some degree but I am looking for a more integrated search experience like the ...
2
votes
1answer
93 views

Best Data Store for huge data with large number of reads and writes

I need to store around 100 millions of records on the database. Around 60-70% of them will be deleted daily and same amount of records are inserted daily. I feel a document database like Hbase, Big ...
2
votes
1answer
487 views

Is MongoDB thread-safe?

I'm running MongoDB on Windows. I have 1 or more threads that drop and recreate a collection. Using mongo.exe with the show collections() command, I'm seeing multiple collections with the same name ...
2
votes
2answers
187 views

How do document databases deal with changing relationships between objects (or do they at all)?

Say, at the beginning of a project, I want to store a collection of Companies, and within each company, a collection of Employees. Since I'm using a document database (such as MongoDB), my structure ...
2
votes
2answers
288 views

MongoDB document design for comments (and their reply comments)

I have a model that looks like: class Comment { public string ID { get; set; } public string ArticleType { get; set; } public string ArticleID { get; set; } public string Body { get; ...
2
votes
1answer
836 views

How to organise a many to many relationship in MongoDB

I have two tables/collections; Users and Groups. A user can be a member of any number of groups and a user can also be an owner of any number of groups. In a relational database I'd probably have a ...
2
votes
2answers
136 views

How to store votes for CouchDB document?

I am looking for a good example how to store votes in a document. For example if we have a document which is post and users can vote for it. If I store the vote in a field in the document, for ...
2
votes
3answers
311 views

do any source-control systems use a document database for storage?

One of those questions that's difficult to google. We were running into issues the other day with speed of our svn repository. The standard solution to this seems to be "more RAM! more CPU!" etc. ...
2
votes
1answer
295 views

RavenDB. How to load document with only 5 items from inner collection?

Here is a document in the store: { "Name": "Hibernating Rhinos", "Employees": [ { "Name": "Ayende" }, { "Name": "John" }, { "Name": "Bob" }, { "Name": "Tom" ...
2
votes
2answers
539 views

How to model structures such as family trees in document databases

I have been looking into document databases, specifically RavenDb, and all the examples are clear and understandable. I just can't find any example where we do not know beforehand how many levels a ...
2
votes
2answers
704 views

How can I avoid duplicating data in a document database like RavenDB?

Given that document databases, such as RavenDB, are non-relational, how do you avoid duplicating data that multiple documents have in common? How do you maintain that data if it's okay to duplicate ...
1
vote
3answers
37 views

Should we denormalize data in a Document to improve performance? (Document Database)

In my system Employees log Requests and Requests are about an Equipment. In order to avoid loading the Employee and Equipment documents each time I need to display a Request I want to denormalize ...
1
vote
1answer
40 views

How to model “reference data” in a Document Database model?

I’m creating a document model of my entities to store in a Document Database (RavenDB). The domain I’m modeling revolves around Incidents. An incident has a source, a priority, a category, a level of ...
1
vote
1answer
28 views

Suggestion on Customer Profiling System: Books, Articles, etc

I'm going to work on a Customer Profiling project (similar but not same to Google Analytics) for our own E-Commerce website using C#. I'm pretty new to this kind of project, and the Customer Profiling ...
1
vote
1answer
141 views

document db - denormalized references - best practice

Yo - this is not a ravendb issue per se - it's another design question pertaining to document dbs in general. So I've been using DenormalizedReference quite a bit and it has just occured to me that ...
1
vote
1answer
164 views

Multi-tentant model and nosql?

When doing multi-tenant applications using a RDMBS I use tenantId columns in each table to indicate which tenant a row belongs to. How would I do that in a DocumentDatabase? Let's take mongodb for ...
1
vote
3answers
582 views

RavenDB Basic concepts

I've been using ravenDB for a mere week or so. Referencing, initializing, and storing data is pretty easy. However, I'm still not to familiar w/ how indexing and such works and I have over 300+k ...
1
vote
2answers
218 views

Document Database - Many-to-many

Lets say we mimic the behaviour of a many-to-many relationship between Users and UserGroups, and we're storing the ID's of which UserGroups a User is in, in the User document within an array. Now when ...
1
vote
2answers
218 views

RavenDB ID for child documents

I like how cleanly an object is stored in ravenDB, but have a practical question for which I'm not sure of the best answer. Lets say i have a quote request: QuoteRequest.cs int Id; dateTime ...
1
vote
1answer
546 views

Document Database Design: Multi-level categories (MongoDB specifically)

I'm trying to figure out the proper way to think about this problem for a document based data storage system. I've got the simple case of a two-tier category system, where there are Industries and ...
1
vote
2answers
130 views

What sort of Database system should I use?

I'm planning to write an address book that stored contact information. Each contact could have an unlimited number of fields. Mostly strings and integers. But perhaps references to other Objects. ...
1
vote
1answer
304 views

Best practices for configuring a Solr schema

I'm currently configuring my schema.xml file and trying to figure out what's the best way to set up my documents. I use a RMDBS and thus many objects are relational. Take this site for instance; a ...
1
vote
1answer
121 views

How to register for callbacks on a DB4O server?

I have a DB4O server listening on a port IObjectServer server = Db4oClientServer.OpenServer("filename.db40", 11978); How do i register for callbacks? For example how do i execute some ...
1
vote
4answers
1k views

Open Source .Net Object Database or Document Database for use in Hosted environment

I am looking at creating a web site and I want to try and learn either a Object Database or a Document Database. I am going to be using a hosting provider so I won't be able to install any software. ...
0
votes
1answer
46 views

Is Mongo Database suitable for a forum [closed]

I generally use PHP with MySQL for a DB and Memcache for cache. I am curious if MongoDB or basically any Document DB would be good for a Discussion Forum or if something like MySQL would be better ...
0
votes
1answer
91 views

Reading from RavenDb immediatly after writing to it returns inconsistant data

I have a reconciliation process where by a background thread that periodically retrieves a list of object ids from an external webservice and attempts to add the missing entities to an embedded ...
0
votes
1answer
93 views

Using polymorphic queries over interfaces in RavenDB

I'm interested in switching over our application (or parts of it) to use RavenDB from SQL server with NHibernate. The key feature that I can't seem to find in Raven is the usage of interfaces for ...
0
votes
1answer
127 views

Possible to sync a sqlServer view into a noSQL db like MongoDB or RavenDB?

I'm looking to get a complex sqlserver view into a documentDB like mongoDB for performance reasons. Is it possible to sync the two together? or What's the best approach to get each record/document ...
0
votes
1answer
46 views

Handling shared objects in Nosql (documentstore)

Theres one thing that I haven't understood with document databases and that's how to handle shared objects. Take this these two different objects/documents: Email BelongsTo (User object) Comment ...

1 2