如何使用 Rails 上的 Thinking_sphinx gem 搜索单词的前后部分

发布于 2024-09-06 19:57:57 字数 493 浏览 4 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女的英雄梦 2024-09-13 19:57:57

得到结果,

首先我添加了

development:
      enable_star: 1
      min_infix_len: 3

配置 -> sphinx.yml

重建了我的应用程序

rake ts:rebuild

和我通过使用然后在控制器上

User.search "*mple", :star => true

,其结果是,

sample

Got the Result,

At first I have added

development:
      enable_star: 1
      min_infix_len: 3

on config -> sphinx.yml

and I have rebuild my application by using

rake ts:rebuild

and then on controller,

User.search "*mple", :star => true

which result,

sample
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文