Mongo DB relations between objects

后端 未结 2 929
一个人的身影
一个人的身影 2020-12-25 09:10

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

2条回答
  •  暖寄归人
    2020-12-25 09:41

    I think this post will be right for you http://www.mongodb.org/display/DOCS/Schema+Design

    Use Cases

    Customer / Order / Order Line-Item

    Orders should be a collection. customers a collection. line-items should be an array of line-items embedded in the order object.

    Blogging system.

    Posts should be a collection. post author might be a separate collection, or simply a field within posts if only an email address. comments should be embedded objects within a post for performance.

    Schema Design Basics

    Kyle Banker, 10gen

    http://www.10gen.com/presentation/mongosf2011/schemabasics

    Indexing & Query Optimization Alvin Richards, Senior Director of Enterprise Engineering

    http://www.10gen.com/presentation/mongosf-2011/mongodb-indexing-query-optimization

    **These 2 videos are the bests on mongoddb ever seen imho*

提交回复
热议问题