Fuzzy $site->search()

Hi. Is there any built-in option to use fuzzy search instead of exact matching?

No, there isn’t. But maybe the Algolia plugin is an alternative.

1 Like

Okay. And what about case insensitive?

As far as I know the search works case insensitive

It’s not if my query contains cyrillic symbols. But I’ve solved this by adding
mb_strtolower($query, "UTF-8")
Thanks.