Is there a MongoDB maximum bson size work around?

前端 未结 2 802
有刺的猬
有刺的猬 2021-01-05 01:49

The document I am working on is extremely large. It collects user input from an extremely long survey (like survey monkey) and stores the answers in a mongodb database.

2条回答
  •  囚心锁ツ
    2021-01-05 02:21

    You should be using gridfs. It allows you to store documents in chunks. Here's the link: http://docs.mongodb.org/manual/reference/gridfs/

提交回复
热议问题