Skip to content

Commit

Permalink
Merge pull request #2285 from milvus-io/v2.3.x-anthony
Browse files Browse the repository at this point in the history
update search
  • Loading branch information
AnthonyTsu1984 authored Sep 4, 2023
2 parents 3d05630 + fb88459 commit 0785575
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions site/en/userGuide/search/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -302,11 +302,10 @@ Output:
<tr>
<td><code>SEARCH_PARAM</code></td>
<td>Search parameter(s) specific to the index.</td>
<td>See <a href="index.md">Vector Index</a> for more information. Possible options are as follows:<ul>
<td>See <a href="index.md">Vector Index</a> for more information. Possible options are as follows:<ul>
<li><code>nprobe</code> Indicates the number of cluster units to search. This parameter is available only when <code>index_type</code> is set to <code>IVF_FLAT</code>, <code>IVF_SQ8</code>, or <code>IVF_PQ</code>. The value should be less than <code>nlist</code> specified for the index-building process.</li>
<li><code>ef</code> Indicates the search scope. This parameter is available only when <code>index_type</code> is set to <code>HNSW</code>. The value should be within the range from <code>top_k</code> to <code>32768</code>.</li>
<li><code>metric_type</code> Indicates the metric type used in the search. It should be the same as the one specified when you index the collection.</li>
<li><code>limit</code> Indicates the number of entities to return starting from the last skippped entity.</li>
<li><code>offset</code> Indicates the number of entities to skip during the search. The sum of this parameter and <code>topK</code> of the <code>withTopK()</code> method should be less than <code>16384</code>.</li>
</ul></td>
</tr>
Expand Down

0 comments on commit 0785575

Please sign in to comment.