我使用了gem elasticsearch-rails和elasticsearch-model,我很难在elasticsearch-rails中编写这个查询。
SELECT "news".* FROM "news"
WHERE "news"."is_active" = 'true' AND
((priority is not null AND created_at > '2014-07-08 08:55:52.888587') OR
(created_at > '2014-07-08 08:55:52.888820' AND is_persisted = 't') )
ORDER BY "news"."priority" ASC, "news"."created_at" DESC
LIMIT 10 OFFSET 0
在我之前的项目中,我使用了“轮胎模型”,我使用了这样的东西:
filter :bool, must: {and: [{term: {field with options}}, {term: {field with options}}]}
,它适用于轮胎模型
但是如果我在elasticsearch-rails中使用这样的东西,它会抛出错过的过滤错误 我写这样的东西来过滤活动记录:
def self.news_index(page = 1)
query =:
response=self.elasticsearch.search query: { match: { is_active: true }}
response=response.page(page)
end
在上面的方法中,我想添加带有bool选项的组合过滤器。谁能指导我?
答案 0 :(得分:0)
Elasticsearch-ruby在查询时更接近elasticsearch DSL。大多数情况下,您将哈希(或类似哈希的对象)传递给查询方法。
这样的事情会让你接近:
self.search query: {
filtered: {
query: { match: { is_active: true }},
filter: {
bool: {
must: {
and: [{term: {field with options}}, {term: {field with options}}]
}
}
}
}
}
不同之处在于轮胎查询中的filter
是一个方法调用而不是参数:bool
和过滤器。您现在需要指定一个带有哈希值的:filter
键,该哈希值包含一个:bool
键,并将您现有的过滤器作为值。