elasticsearch 문서 가져오기 작업

1135 단어 elasticsearches
단일 id 문서를 가져오려면:
get blog/type_blog/1
    :
{
"_index":"blog",
"_type":"type_blog",
"_id":"1",
"found":true,
"_source":{
    "id":1,
    "name":"zhangsan",
    ......
}
}

found:         
source:     

여러 문서를 가져오려면 다음과 같이 하십시오.
get _mget
{
    "docs":[{
        "_index":"blog",
        "_type":"type_blog",
        "_id":"1"        
    },{
        "_index":"blog1",
        "_type":"type_blog1",
        "_id":"1"    
    }]
}
    :
get blog/_mget
{
    "docs":[{
        "_type":"type_blog",
        "_id":"1"        
    },{
        "_type":"type_blog1",
        "_id":"1"    
    }]
}
    ,  
get blog/type_blog/_mget
{
    "docs":[{
        "_id":"1"        
    },{
        "_id":"2"    
    }]
}
  :
get blog/type_blog/_mget
{
    "ids":["1","2"]
}

좋은 웹페이지 즐겨찾기