
How do I design a scheme such this in MongoDB? I think there are no foreign keys!
|
How do I design a scheme such this in MongoDB? I think there are no foreign keys! |
|||||||||||||||
|
|
You may be interested in using a ORM like Mongoid or MongoMapper. http://mongoid.org/docs/relations/referenced/1-n.html In a NoSQL database like MongoDB there are not 'tables' but documents. Documents are grouped inside Collections. You can have any kind of document – with any kind of data – in a single collection. Basically, in a NoSQL database it is up to you to decide how to organise the data and its relations, if there are any. What Mongoid and MongoMapper do is to provide you with convenient methods to set up relations quite easily. Check out the link I gave you and ask any thing. Edit: In mongoid you will write your scheme like this:
Edit:
You can use that ObjectId in order to do relations between documents. |
|||||||||||||||
|
First, to clarify some naming conventions. MongoDB uses
Take the following model:
Clearly Jane's course list points to some specific courses. The database does not apply any constraints to the system (i.e.: foreign key contstraints), so there are no "cascading deletes" or "cascading updates". However, the database does contain the correct information. In addition, MongoDB has a DBRef standard that helps standardize the creation of these references. In fact, if you take a look at that link, it has a similar example.
To be clear, MongoDB is not relational. There is no standard "normal form". You should model your database appropriate to the data you store and the queries you intend to run. |
|||||
|