MongoDB performance with growing data structure

后端 未结 4 2097
执念已碎
执念已碎 2020-12-06 02:42

Let\'s say we are designing a new system and have decided to use MongoDB as the primary database. The data schema is very similar to a blog with [growing] comments.

4条回答
  •  离开以前
    2020-12-06 03:15

    Your main problem is that you are then probably making updates and deletes to data in different memory pages which means you won't be able to update as sequentially. In this instance, many databases will have the same problem so switching from MongoDB won't solve anything.

提交回复
热议问题