Context Suggester
PUT place
{
"mappings": {
"shops" : {
"properties" : {
"suggest" : {
"type" : "completion",
"contexts": [
{ # ①
"name": "place_type",
"type": "category",
"path": "cat"
},
{ # ②
"name": "location",
"type": "geo",
"precision": 4
}
]
}
}
}
}
}
PUT place_path_category
{
"mappings": {
"shops" : {
"properties" : {
"suggest" : {
"type" : "completion",
"contexts": [
{ # ③
"name": "place_type",
"type": "category",
"path": "cat"
},
{ # ④
"name": "location",
"type": "geo",
"precision": 4,
"path": "loc"
}
]
},
"loc": {
"type": "geo_point"
}
}
}
}
}类别上下文(Category Context)
类别查询
地理位置上下文
地理映射
索引地理上下文
地理位置查询
Last updated