使用 Sunspot 搜索会返回 db 中的所有结果
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的搜索语句可能有问题。您尝试过使用这种语法吗?
我的猜测是
st
局部变量的使用把事情搞砸了。我还将通过运行以下命令来验证所有内容是否已正确索引:Something is probably off with your search statement. Have you tried using this syntax?
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: