标签: php elasticsearch
我有一个带有视频对象的索引Elasticsearch,如何选择具有超过X个“视图”的结果(我在文档中找不到任何过滤器)? 我的意思是像mysql中的select * from videos where views > '99';。
select * from videos where views > '99';
由于
答案 0 :(得分:2)
查看qleasticsearch query DSL参考。听起来像是在寻找range filter。