Skip to content

Commit b6e9b65

Browse files
committed
DOCSP-39980 - GridFS (#289) (#329)
(cherry picked from commit 86eb2be) (cherry picked from commit af51528) (cherry picked from commit 9ef610d)
1 parent a162754 commit b6e9b65

File tree

5 files changed

+1154
-1
lines changed

5 files changed

+1154
-1
lines changed

source/fundamentals.txt

Lines changed: 3 additions & 1 deletion
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

3435
- :ref:`Connecting to MongoDB <csharp-connection>`
@@ -49,4 +50,5 @@ Fundamentals
4950
- :ref:`csharp-time-series`
5051
- :ref:`Encrypt Fields <csharp-fle>`
5152
- :ref:`csharp-geo`
52-
- :ref:`csharp-read-write-config`
53+
- :ref:`csharp-gridfs`
54+
- :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)