如何使用 Rails 上的 Thinking_sphinx gem 搜索单词的前后部分
我已经使用 Thinking_sphinx gem 成功创建了搜索部分,并且搜索了一个显示正确的单词,但搜索的问题是需要提供完整的单词才能搜索完全匹配。我不想给出确切的单词,而是也考虑任何特定字符或单词的一部分。帮助我解决这个问题..
示例
say my word is "Sample"
而不是给出示例,我需要指定单词的一部分,例如。
amp or ple
对于rails代码,我们将
find :all, :conditions => ["user_id like ? ", "%#{search}%"]
通过使用thinking_sphinx gem来指定如何指定它。
我尝试过,
User.search "*amp*"
但没有结果引导我解决这个问题。
I have created my search part successfully with the thinking_sphinx gem and I have searched a word it is showing correct, But the problem with the search is it need full word to be given to search exact match. I dont want to give exact word instead any particular character or part of words also be taken into account. help me to solve this problem..
example
say my word is "Sample"
instead of giving sample i need to specify part of the word like.
amp or ple
for rails code we will specify
find :all, :conditions => ["user_id like ? ", "%#{search}%"]
how to specify this, by using thinking_sphinx gem.
i tried with,
User.search "*amp*"
but of no result guide me to solve this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
得到结果,
首先我添加了
配置 -> sphinx.yml
重建了我的应用程序
和我通过使用然后在控制器上
,其结果是,
Got the Result,
At first I have added
on config -> sphinx.yml
and I have rebuild my application by using
and then on controller,
which result,