标签:dea target lov elastic arch _id head type doc
HEAD /movies/_doc/1
200 - OK
GET /movies/_doc/1
{
"_index" : "movies",
"_type" : "_doc",
"_id" : "1",
"_version" : 2,
"_seq_no" : 9743,
"_primary_term" : 8,
"found" : true,
"_source" : {
"year" : 1995,
"title" : "Dracula: Dead and Loving It1",
"id" : "12",
"genre" : [
"Comedy"
]
}
}
筛选源 多个源用,分割
GET /movies/_doc/1?_source_includes=id,year&_source_excludes=id
{
"_index" : "movies",
"_type" : "_doc",
"_id" : "1",
"_version" : 2,
"_seq_no" : 9743,
"_primary_term" : 8,
"found" : true,
"_source" : {
"year" : 1995
}
}
标签:dea target lov elastic arch _id head type doc
原文地址:https://www.cnblogs.com/roinbi/p/14515679.html