zoukankan      html  css  js  c++  java
  • Elasticsearch 按时间段查询

            $ClientBuilder = new ClientBuilder();
            $esClient = $ClientBuilder->create()->setHosts([config('search_host')])->build();
            $params['index'] = config('search_index');
            //$params['body']['query']['match']['hw_doc_ent_id'] = $ent_id;
            
            $params['body']['query']['bool']['must'][0]['match_phrase']['hw_doc_ent_id'] = $ent_id;
            $params['body']['query']['bool']['should'][0]['match_phrase']['hw_doc_title'] = $keyword;
            $params['body']['query']['bool']['should'][1]['match_phrase']['hw_doc_body'] = $keyword;
            $params['body']['query']['bool']['filter'][0]['range']['hw_doc_edit_time']['lte'] = "2019-04-04 04:18:42";
            $params['body']['query']['bool']['filter'][0]['range']['hw_doc_edit_time']['gte'] = "2019-04-02 04:18:42";
            $params['body']['query']['bool']['filter'][0]['range']['hw_doc_edit_time']['format'] = "yyyy-MM-dd HH:mm:ss";
    
            $params['body']['sort']['_score']['order'] = "desc";
            $params['body']['sort']['hw_doc_edit_time']['order'] = "desc";
    
            $params['body']['size'] = 20;
            $params['body']['from'] = $page;
    
            $response = $esClient->search($params);
            $data = $response['hits']['hits'];
            $total = $response['hits']['total']['value'];
  • 相关阅读:
    软件git装的过程
    深入理解多态
    深入.net框架
    深入C#数据类型
    JavaScript 性能优化(2)
    JAVA: 集合框架
    JavaScript 性能优化(1)
    JavaScript 常用进度条
    Java: 随机生成字符串并排序
    JAVA: String详解
  • 原文地址:https://www.cnblogs.com/zhaoying/p/15773605.html
Copyright © 2011-2022 走看看