Skip to content

Commit 8e17910

Browse files
committed
DOCSP-39980 - GridFS (mongodb#289) (mongodb#329)
(cherry picked from commit 86eb2be) (cherry picked from commit af51528)
1 parent 4b6ac0c commit 8e17910

File tree

5 files changed

+1153
-0
lines changed

5 files changed

+1153
-0
lines changed

source/fundamentals.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Fundamentals
2929
Time Series Collections </fundamentals/time-series>
3030
In-Use Encryption </fundamentals/encrypt-fields>
3131
Search Geospatially </fundamentals/geo>
32+
Store Large Files </fundamentals/gridfs>
3233
Replica Set Operations </fundamentals/read-write-configuration>
3334
OData </fundamentals/odata>
3435

@@ -50,4 +51,5 @@ Fundamentals
5051
- :ref:`csharp-time-series`
5152
- :ref:`Encrypt Fields <csharp-fle>`
5253
- :ref:`csharp-geo`
54+
- :ref:`csharp-gridfs`
5355
- :ref:`csharp-read-write-config`

source/fundamentals/crud/write-operations/insert.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ Overview
2323
In this guide, you can learn how to use the {+driver-long+} to add
2424
documents to a MongoDB collection by performing insert operations.
2525

26+
.. note:: 16 MB Size Limit
27+
28+
MongoDB limits individual BSON documents to 16 MB. If your document is larger than 16 MB,
29+
use the :ref:`GridFS <csharp-gridfs>` API instead.
30+
2631
An insert operation inserts one or more documents into a MongoDB collection.
2732
The {+driver-short+} provides the following methods to perform insert
2833
operations, each of which has an asynchronous and synchronous version:

0 commit comments

Comments
 (0)