Skip to content

Commit 25d74eb

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 86b15a1 commit 25d74eb

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
@@ -16,6 +16,11 @@ Overview
1616
In this guide, you can learn how to use the {+driver-long+} to add
1717
documents to a MongoDB collection by performing insert operations.
1818

19+
.. note:: 16 MB Size Limit
20+
21+
MongoDB limits individual BSON documents to 16 MB. If your document is larger than 16 MB,
22+
use the :ref:`GridFS <csharp-gridfs>` API instead.
23+
1924
An insert operation inserts one or more documents into a MongoDB collection.
2025
The {+driver-short+} provides the following methods to perform insert
2126
operations, each of which has an asynchronous and synchronous version:

0 commit comments

Comments
 (0)