我正在使用 Tire/ElasticSearch 来索引我的 rails 应用程序中的模型。
我正在尝试在索引“文章”/字段内容上设置一个非常简单的 more_like_this 查询,如下所示
s = Tire.search 'articles' do
query do
mlt_field do
content { string 'electricity' }
end
end
end
当我运行这个我得到这个错误
undefined method `mlt_field' for #<Tire::Search::Query:0x000001013657e8 @value={}>
有人知道我该如何设置吗?我浏览了非常好的轮胎文档,但我看不到任何帮助。我发现了一个类似的查询,fuzzy_like_this 和 Github 问题说要在自述文件中搜索模糊,但我找不到任何对此的参考。