Skip to content

Commit 911fce9

Browse files
Merge pull request #249660 from jcodella/patch-3
Update vector-search.md
2 parents 1fc866e + 10441b1 commit 911fce9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/cosmos-db/mongodb/vcore/vector-search.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,11 @@ To create a vector index, use the following `createIndexes` template:
5757
| `dimensions` | integer | Number of dimensions for vector similarity. The maximum number of supported dimensions is `2000`. |
5858

5959
> [!IMPORTANT]
60-
> Setting the _numLists_ parameter correctly is critical to achieving good accuracy and perormance. We recommend that `numLists` is set to `rowCount()/1000` for up to 1 million rows and to `sqrt(rowCount)` for more than 1 million rows.
60+
> Setting the _numLists_ parameter correctly is important for acheiving good accuracy and performance. We recommend that `numLists` is set to `rowCount()/1000` for up to 1 million rows and to `sqrt(rowCount)` for more than 1 million rows.
6161
>
6262
> As the number of items in your database grows, you should tune _numLists_ to be larger in order to achieve good latency performance for vector search.
6363
>
64-
> If you're experimenting with a new scenario or creating a small demo, you can start with `numLists` set to `1` to perform a brute-force search across all vectors. This should provdie you with the most accurate results from the vector search.
64+
> If you're experimenting with a new scenario or creating a small demo, you can start with `numLists` set to `1` to perform a brute-force search across all vectors. This should provide you with the most accurate results from the vector search. After your initial setup, you should go ahead and tune the `numLists` parameter using the above guidance.
6565
6666
## Examples
6767

0 commit comments

Comments
 (0)