File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
includes/fundamentals/code-examples Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -220,7 +220,7 @@ enhances speed and reduces memory usage.
220220 arrays.
221221
222222You can effect these performance improvements by storing the following
223- primitive types in ``Memory<T>`` or ``ReadOnlyMemory<T>`` objects :
223+ primitive types in ``Memory<T>`` or ``ReadOnlyMemory<T>`` structs :
224224
225225- ``bool``
226226- ``sbyte``
@@ -261,9 +261,9 @@ represented in MongoDB:
261261 :ref:`csharp-atlas-vector-search` involves creating and querying
262262 large numerical arrays. If your application uses
263263 {+vector-search+}, you might benefit from the performance
264- improvements from using ``Memory`` and ``ReadOnlyMemory`` to model
265- vector data . To learn more, see :ref:`csharp-supported-vector-types`
266- in the {+vector-search+} guide.
264+ improvements from using ``Memory`` and ``ReadOnlyMemory`` to store
265+ array representations of embeddings and query vectors . To learn more,
266+ see :ref:`csharp-supported-vector-types` in the {+vector-search+} guide.
267267
268268Additional Information
269269----------------------
Original file line number Diff line number Diff line change 44
55public class Program
66{
7-
87 public static void Main ( string [ ] args )
98 {
109 // Replace with your connection string
You can’t perform that action at this time.
0 commit comments