I've just implemented full text search engine based on Hibernate Search under the hood.
I'm searching solution for one issue. I have texts with Polish (UTF-8) characters, like: "zażółć gęślą jaźń". When I'm searching for "jaźń" everything is OK and result is found. But when I'm searching for "jazn" the result is not found.
I would like to search for all possible terms: "jaźń", "jazń", "jaźn", and "jazn" and find the searched "zażółć gęślą jaźń" text. How can I configure Hibernate Search to do so?