Skip to content

Commit 4cdc618

Browse files
authored
Fix query parsers doc related to vector search (#3799)
1 parent c163923 commit 4cdc618

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

solr/solr-ref-guide/modules/query-guide/pages/other-parsers.adoc

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,11 +1002,13 @@ These parameters would be defined in `solrconfig.xml`, in the `defaults` section
10021002

10031003
For more information about the possibilities of nested queries, see Yonik Seeley's blog post https://lucidworks.com/2009/03/31/nested-queries-in-solr/[Nested Queries in Solr].
10041004

1005-
== Neural Query Parsers
1005+
== Vector Query Parsers
10061006

1007-
There is currently one Query Parser in Solr to provide Neural Search: `knn`.
1007+
There are currently three Query Parsers in Solr to provide Vector Search:
10081008

1009-
KNN stands for k-nearest neighbors.
1009+
- `knn`: matches k-nearest neighbours (knn) documents to the target vector.
1010+
- `knn_text_to_vector`: encode a textual query to a vector using a dedicated Language Model and matches knn documents to such query vector.
1011+
- `vectorSimilarity`: matches documents whose similarity with the target vector is a above a minimum threshold.
10101012

10111013
Details are documented further in the section xref:query-guide:dense-vector-search.adoc[].
10121014

0 commit comments

Comments
 (0)