0
点赞
收藏
分享

微信扫一扫

Java版排序算法

勇敢乌龟 2024-11-05 阅读 14
NameActionbody
设置单次最大查询量_settings{“index”:{“max_result_window”:“1000000”}}
查询全部_search{“query”:{“match_all”:{}}} return root;
分页查询_search{“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}},“from”:0,“size”:50,“sort”:[],“aggs”:{}} return root;
排序查询_search{“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}},“sort”:{“create_time”:{“order”:“desc”}}} return root;
查询全部_search{“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root;
根据条件查询_search{“query”:{“bool”:{“must”:[{“term”:{“ci_etl_key”:“ci_etl_key”}}],“must_not”:[],“should”:[]}}}
总数_count{“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root;
删除全部_delete_by_query{“query”:{“bool”:{“must”:[{“match_all”:{}}],“must_not”:[],“should”:[]}}} return root;
举报

相关推荐

0 条评论