Skip to Content
0
Former Member
May 29, 2018 at 12:59 PM

Sorl out of the box, stemming & fuzzy search exclusive?

198 Views

Hi,

Hybris 6.4

  • solr on indexing time uses stemming with SnowballPorterFilterFactory

  • solr on query time also uses stemming with SnowballPorterFilterFactory

if a user applies fuzziness on a text field via the hmc, the solr query only applies multiterm aware filters, the indexing & query therefore do not map.

The result is that fuzziness is applied on not stemmed words, but the index contains stemmed words.

What is the recommended way to handle this? Should we rather only use stemd basically forbid fuzziness via hmc? Or should we rather index without stemming e.g. SnowballPorterFilterFactory and apply/allow fuzziness.

Thanks!