使用 Sunspot 搜索会返回 db 中的所有结果

发布于 2024-11-15 02:48:41 字数 336 浏览 3 评论 0原文

在 StreamPage 内部,我定义了此代码用于搜索,

searchable do
    text :html, :stored => true, :boost => 2
    integer :stream_id
end

我有 44 条记录,并在此设置上使用了重新索引,

s = StreamPage.search do |st|
    st.keywords 'fsdgsfdgdffsdfgsfdgfd'
end

因此,即使我运行上述代码,我也会得到所有记录,我写入关键字的任何内容都会得到结果。

Inside StreamPage i have defined this code for searching

searchable do
    text :html, :stored => true, :boost => 2
    integer :stream_id
end

I have 44 record and used reindex on this setting

s = StreamPage.search do |st|
    st.keywords 'fsdgsfdgdffsdfgsfdgfd'
end

So even when i run above code i get all records, anything i write into keyword i get the result.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

雄赳赳气昂昂 2024-11-22 02:48:41

您的搜索语句可能有问题。您尝试过使用这种语法吗?

s = StreamPage.search { keywords('fsdgsfdgdffsdfgsfdgfd') }

我的猜测是 st 局部变量的使用把事情搞砸了。我还将通过运行以下命令来验证所有内容是否已正确索引:

bin/rake sunspot:reindex

Something is probably off with your search statement. Have you tried using this syntax?

s = StreamPage.search { keywords('fsdgsfdgdffsdfgsfdgfd') }

My guess is that the use of the st local variable is messing things up. I would also verify that everything has been properly indexed by running this command:

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