开发者

Synonym Search Using Sphinx

开发者 https://www.devze.com 2023-02-11 11:03 出处:网络
Has somebody written a morphology engine for synonyms on sphinx.Or is the best bet still to create a word forms dictionary which declares all my synonyms.Also how will this affecting stemming.In the d

Has somebody written a morphology engine for synonyms on sphinx. Or is the best bet still to create a word forms dictionary which declares all my synonyms. Also how will this affecting stemming. In the documentation it states:

stemming is not applied to words found in the forms list

Does this mean that if I have defined running > run in my wordform that runs will not be 开发者_运维百科stemmed to run because run appears in my word forms list?


You can create synonyms in mongo or mysql for example, and do query preporcessing, so when somebody do search with:

Cola

you will change the query to:

(cola|pepsi|sprite)

which allow you to do morphology search on those words, because stemming doesn't apply to word-forms as you have mentioned.

0

精彩评论

暂无评论...
验证码 换一张
取 消