ElasticSearch
随机检索文档
{
"from": 0,
"size": 200,
"_source": [
"title",
"location"
],
"sort": {
"_script": {
"script": "Math.random()",
"type": "number"
}
}
}
嵌套文档检索并给出的定嵌套文档的位置
GET zhuvideo/video/_search
{
"_source": ["location", "title"],
"query": {
"bool": {
"must": [
{"match_phrase": {"title": "friends"}},
{
"nested": {
"path": "content",
"query": {
"match_phrase": {
"content.line_en_lem": "friend"
}
},
"inner_hits": {}
}
}
]
}
}
}