如何将 EdgeNGramTokenFilter 添加到 Compass 查询?
我正在使用罗盘构建一些自动完成功能,我需要将 EdgeNGramTokenFilter 添加到罗盘查询中,但我不知道如何添加它。
这可能吗?
I am building some auto-complete functionality using compass and I need to add an EdgeNGramTokenFilter to the compass query but I cannot see how I can add it.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我设法通过创建一个提供程序类来添加
EdgeNGramTokenFilter
过滤器,并在compass.config.xml
文件中添加对其的引用,方法是在< 中添加以下行;searchEngine>
标签这是该类:
I managed to add the
EdgeNGramTokenFilter
filter by creating a provider class adding a reference to it in thecompass.config.xml
file by adding the following line within the<searchEngine>
tagsHere is the class: