File tree Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Expand file tree Collapse file tree 1 file changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -199,7 +199,8 @@ update_settings_1: |-
199199 },
200200 faceting: {
201201 maxValuesPerFacet: 200
202- }
202+ },
203+ searchCutoffMs: 150
203204 })
204205reset_settings_1 : |-
205206 client.index('movies').resetSettings()
@@ -636,6 +637,12 @@ update_proximity_precision_settings_1: |-
636637 client.index('books').updateProximityPrecision('byAttribute')
637638reset_proximity_precision_settings_1 : |-
638639 client.index('books').resetProximityPrecision()
640+ get_search_cutoff_1 : |-
641+ client.index('movies').getSearchCutoffMs()
642+ update_search_cutoff_1 : |-
643+ client.index('movies').updateSearchCutoffMs(150)
644+ reset_search_cutoff_1 : |-
645+ client.index('movies').resetSearchCutoffMs()
639646search_parameter_guide_facet_stats_1 : |-
640647 client.index('movie_ratings').search('Batman', { facets: ['genres', 'rating'] })
641648geosearch_guide_filter_settings_1 : |-
@@ -743,3 +750,7 @@ facet_search_3: |-
743750 })
744751search_parameter_guide_show_ranking_score_details_1 : |-
745752 client.index('movies').search('dragon', { showRankingScoreDetails: true })
753+ negative_search_1 : |-
754+ client.index('movies').search('-escape')
755+ negative_search_2 : |-
756+ client.index('movies').search('-"escape"')
You can’t perform that action at this time.
0 commit comments