MathWebSearch / mws

MathWebSearch Implementation
https://search.mathweb.org/
GNU General Public License v3.0
47 stars 12 forks source link

do we stem the words for ES while harvesting and in the query #99

Closed kohlhase closed 7 years ago

kohlhase commented 8 years ago

or does ES do that itself? Concretely, do we find "arithmetic progressions" and "arithmetical progression" when looking for "arithmetic progression"?

kohlhase commented 7 years ago

I think this is still an issue.

kohlhase commented 7 years ago

actually, this is primarily a question, if I know the answer, then we can decide what we want to do.

a-hambasan commented 7 years ago

Elasticsearch's analyzer doesn't do stemming by default. If we want to stem the words, we have to set it accordingly (which we didn't). So no, at the moment, ES doesn't stem the words.

kohlhase commented 7 years ago

thanks.