In typesense, when i search 'brd', why it doesn't ...
# community-help
s
In typesense, when i search 'brd', why it doesn't show the results of 'bird'. can you explain me? I need help @Jason Bosco let searchParameters = { 'q': "brd", 'query_by': 'title' } Result: { "facet_counts": [], "found": 0, "hits": [], "out_of": 9979, "page": 1, "request_params": { "collection_name": "books", "per_page": 10, "q": "brd" }, "search_cutoff": false, "search_time_ms": 0 } Why fuzzy search not working here?
k
s
I set min_len_1typo=3, but it only shows results like brother, order, broken, etc.,
Not 'bird'
k
Can you also try setting
max_candidates: 100
s
I got 314 results, still not 'bird'
why fuzzy search is not working here?
k
Can you try on a recent 0.26 RC version? We did fix some typo tolerance bugs in that, perhaps it can help.
s
Where i can download it? Link?
k
Just update the version numbers in the download URL with 0.26.0.rc64
s
It's working but 'bird' comes at 13th position
Is there any ways to get it in 1st
k
What's returned in the first pos?
s
1st: Budd
2nd: Bad
k
Yeah so those also are very close to the original query string.
In terms of edit distance
s
Thank You @Kishore Nallan