InterviewSolution
Saved Bookmarks
| 1. |
What Is Gridfs? |
|
Answer» GridFS is a specification for storing and retrieving files that exceed the BSON-document size limit of 16MB. Instead of storing a FILE in a SINGLE document, GridFS divides a file into parts, or CHUNKS, and stores each of those chunks as a SEPARATE document. GridFS is a specification for storing and retrieving files that exceed the BSON-document size limit of 16MB. Instead of storing a file in a single document, GridFS divides a file into parts, or chunks, and stores each of those chunks as a separate document. |
|