You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SELECT queries with LIMIT bigger than this setting cannot use vector similarity indices. Helps to prevent memory overflows in vector similarity indices.
If a vector search query has a WHERE clause, this setting determines if it is evaluated first (pre-filtering) OR if the vector similarity index is checked first (post-filtering). Possible values:
6594
6594
- 'auto' - Postfiltering (the exact semantics may change in future).
6595
6595
- 'postfilter' - Use vector similarity index to identify the nearest neighbours, then apply other filters
6596
6596
- 'prefilter' - Evaluate other filters first, then perform brute-force search to identify neighbours.
0 commit comments