Advanced Search: This exact word or phrase

Hi,

I’ve a question in advanced search option.
Why when i search for an exact word, fess also returns similar words?
How can I avoid it?

Thanks!

The label seems not to be correct… It’s just a phrase query.

Ok, Thanks.
Is there a simple method to search for a precise word?

In the “mubase” case, I think it’s better to use the following setting in fess_config.properties.

query.boost.fuzzy.min.length=-1
1 Like

Thanks for your help.

Is it possible to disable fuzzy search completely?
Writing in uppercase seems to work

Writing in uppercase seems to work

It’s not a fuzzy query. To do that, you need to edit fess.json(ex. remove lowercase) and delete/create the fess index.

1 Like

It’s not a fuzzy query. To do that, you need to edit fess.json(ex. remove lowercase) and delete/create the fess index.

So if I understand correctly, writing in capital letters I do not perform a fuzzy query and I always get a precise search.
By modifying the fess.json (ex. remove lowercase) it is possible to disable the fuzzy search completely.

It’s correct? :slightly_smiling_face:

query.boost.fuzzy.min.length=-1 disables fuzzy query. Editing fess.json means you can change a rule to analyze texts(ex. lower case, stemming, and so on).
In Fess, fuzzy query means Lucene’s one and does not include a text analysis.