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
Set distance type for similarity search. Default value cosine.
90
91
```
91
92
SET anyarray.similarity_type=cosine;
92
93
SET anyarray.similarity_type=jaccard;
93
94
SET anyarray.similarity_type=overlap;
94
95
```
95
96
96
-
Set threshold for similarity search.
97
+
Set threshold for similarity search. Default value is 0.6 . RESET value is 0.0 . anyarray.similarity_threshold accept values from 0.0 to 1e10 .
97
98
```
98
99
SET anyarray.similarity_threshold = 3;
99
100
RESET anyarray.similarity_threshold;
100
101
```
101
102
103
+
RUM version 1.2 and 1.3 used variables rum.array_similarity_function and rum.array_similarity_threshold that are obsolete and replaced by anyarray.similarity_type and anyarray.similarity_threshold.