Closed xuxinx closed 5 years ago
Standard parser tsquery some words like apple return appl (Sorry, I don't known why)
apple
appl
SELECT to_tsquery('apple'); # Output: # to_tsquery # ------------ # 'appl' # (1 row)
zhparser tsquery apple just return apple
SELECT to_tsquery('testzhcfg', 'apple'); # Output: # to_tsquery # ------------ # 'apple' # (1 row)
Found too many differences between Zhparser and standard parser when they processing English. I realized Zhparser is not for both English.
Standard parser tsquery some words like
apple
returnappl
(Sorry, I don't known why)zhparser tsquery
apple
just returnapple