思考狮身人面像文本搜索
大家好,我在我的一个项目中进行的一项搜索遇到了问题。我是 Sphinx 的新手,问题是当我进行像 =“ipad”这样的搜索时,它工作得很好,但是当我输入“ipa”时,全文搜索似乎无法按照我想要的方式工作,因为我没有收到任何回复。
my_variable = self.search searchTxt, :match_mode => :any, :sort_mode => :extended, :order => sortType, :page => page, :per_page => perPage
我在搜索过程中做错了什么吗?
Hi people I'm having a problem with one search that I'm making in one of my projects. I am new using Sphinx and the problem is when I make a search like = "ipad" it work perfect but when I put "ipa" the full text search seems no to work the way I want cause I'm not receiving anything back.
my_variable = self.search searchTxt, :match_mode => :any, :sort_mode => :extended, :order => sortType, :page => page, :per_page => perPage
Am I doing something wrong with the search?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为使用通配符搜索需要一些额外的配置,如 中所述文档。
I think there is some additional configuration necessary to search with wildcards, as explained in the documentation.