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
Is the issue searching speed or just having too many results?
By default, items with 0-scores are not included in the results list, so non-matches shouldn't be returned. If you pass in a minimumScore value in the options parameter to the constructor, then you can require closer matches for items to be returned. The results are sorted by each item's score, so you could also just call, say, .slice(0, 50) on the array to get the 50 highest-scoring results.
Hi all,
How can I limit the count of result items when I run the search on a array with over 10.000 items?
Thans
The text was updated successfully, but these errors were encountered: