MongoDB - Maximum file size using GridFS

后端 未结 1 973
北恋
北恋 2021-01-20 00:23

I am wondering what is the maximum file size if someone wants to store a file using the GridFS? I can\'t find any information so any help would be appreciated.

1条回答
  •  死守一世寂寞
    2021-01-20 01:15

    Infinity basically, or a more exact number would be how much your working set allows.

    The GridFS standard implemented within drivers will split files up into smaller chunks and store them in a fs.chunks collection irrespective of how big the file is.

    0 讨论(0)
提交回复
热议问题