We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 26b3cd4 commit 60e221aCopy full SHA for 60e221a
src/main/antora/modules/ROOT/pages/mongodb/mongo-search-indexes.adoc
@@ -84,7 +84,6 @@ VectorSearchOperation search = VectorSearchOperation.search("vector_index") <1>
84
.vector( ... )
85
.numCandidates(150)
86
.limit(10)
87
- .quantization(SCALAR)
88
.withSearchScore("score"); <3>
89
90
AggregationResults<MovieWithSearchScore> results = mongoTemplate
@@ -107,8 +106,7 @@ db.embedded_movies.aggregate([
107
106
"path": "plot_embedding", <1>
108
"queryVector": [ ... ],
109
"numCandidates": 150,
110
- "limit": 10,
111
- "quantization": "scalar"
+ "limit": 10
112
}
113
},
114
{
0 commit comments