What type of NoSQL database is best suited to store hierarchical data?

后端 未结 13 1610
悲&欢浪女
悲&欢浪女 2021-01-30 00:07

What type of NoSQL database is best suited to store hierarchical data?

Say for example I want to store posts of a forum with a tree structure:

original p         


        
13条回答
  •  旧时难觅i
    2021-01-30 00:42

    What you possibly need is a document-oriented database like MongoDB or CouchDB.

    See examples of different techniques which allow you to store hierarchical data in MongoDB: http://www.mongodb.org/display/DOCS/Trees+in+MongoDB

提交回复
热议问题