In the guide for materialized path tree structures at mongodb docs they show a simple example of how to structure data to support simple querying:
db.categories.insert( { _id: "Books", path: null } )
db.categories.insert( { _id: "Programming", path: ",Books," } )
db.categories.insert( { _id: "Databases", path: ",Books,Programming," } )
db.categories.insert( { _id: "Languages", path: ",Books,Programming," } )
db.categories.insert( { _id: "MongoDB", path: ",Books,Programming,Databases," } )
db.categories.insert( { _id: "dbm", path: ",Books,Programming,Databases," } )
This works fine as long as _id
is unique for each item. In our case, we are designing a course structure, which has to support SEO:able URLs such as /course-a/lesson-1/introduction
. The data design must support duplicates (e.g. multiple courses can have a lesson called "introduction"):
- Course A
- Introduction (lesson)
- Part 1 (lesson)
- Part 2 (lesson)
- Background (lesson)
- ... (lesson)
- Introduction (lesson)
- Course B
- Introduction (lesson)
- Why this works (lesson)
- ... (lesson)
Our current solution is to have the lessons created using the materialized path design. This is when we realized it won't work with duplicate lesson ids. But before throwing it all away, I'd like to ask for your advice.
Is there any way to design this to support our problem using materialized paths?