永远爱学习

导航

elasticsearch 创建索引

GET _analyze
{
"analyzer":"ik_max_word",
"text":"四川省成都市新津县"
}


PUT /megacorp/employee/1
{
"first_name" : "John",
"last_name" : "Smith",
"age" : 25,
"about" : "I love to go rock climbing",
"interests": [ "sports", "music" ]
}

PUT /megacorp/employee/2
{
"first_name" : "Jane",
"last_name" : "Smith",
"age" : 32,
"about" : "I like to collect rock albums",
"interests": [ "music" ]
}

PUT /megacorp/employee/3
{
"first_name" : "Douglas",
"last_name" : "Fir",
"age" : 35,
"about": "I like to build cabinets",
"interests": [ "forestry" ]
}

posted on 2018-12-29 15:19  永远爱学习  阅读(111)  评论(0)    收藏  举报