Java版排序算法

阅读 14

2024-11-05

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)

0 0 举报