PUT /stconvert/
{
"settings" : {
"analysis" : {
"analyzer" : {
"tsconvert" : {
"tokenizer" : "tsconvert"
}
},
"tokenizer" : {
"tsconvert" : {
"type" : "stconvert",
"delimiter" : "#",
"keep_both" : false,
"convert_type" : "t2s"
}
},
"filter": {
"tsconvert" : {
"type" : "stconvert",
"delimiter" : "#",
"keep_both" : false,
"convert_type" : "t2s"
}
},
"char_filter" : {
"tsconvert" : {
"type" : "stconvert",
"convert_type" : "t2s"
}
}
}
}
}
GET stconvert/_analyze
{
"tokenizer" : "keyword",
"filter" : ["lowercase"],
"char_filter" : ["tsconvert"],
"text" : "国际國際"
}
GET /_cat/plugins
POST /fdsgh/title/_bulk
{ "index":{"_id":1} }
{"id": 1, "title": "fkldsjgds"}
POST /sear_title/title/_bulk
{ "index":{"_id":1} }
{"id": 1, "title": "西安是一个好地方"}
{ "index":{"_id":2} }
{"id": 2, "title": "北京也很美"}
{ "index":{"_id":3} }
{"id": 3, "title": "大美山河,长江流域"}
{ "index":{"_id":4} }
{"id": 4, "title": "khfgskhtitle"}
POST /usr_user/user/_bulk
{ "index":{"_id":1} }
{"id": 1, "avatar": "","email": "academy.sqa@deltaww.com","firstName":"Academy","lastName": "SQA Team","name": "","phone": "","userType": "general_email"}
{ "index":{"_id":2} }
{"id": 2, "avatar": "","email": "academy.admin@deltaww.com","firstName":"Academy","lastName": "Product Team","name": "","phone": "","userType": "general_email"}
{ "index":{"_id":3} }
{"id": 3, "avatar": "","email": "admin.deltaknew@deltaww.com","firstName":"DeltaKnEW","lastName": "Admin","name": "","phone": "","userType": "general_email"}
{ "index":{"_id":4} }
{"id": 4, "avatar": "","email": "academy.dev@deltaww.com","firstName":"Academy","lastName": "Develop","name": "","phone": "","userType": "general_email"}
POST /kobezhao1/zhao/_bulk
{ "index":{"_id":1} }
{"id": 1, "name": "长城","email": "123@163.com","address": "陕西宝鸡"}
{ "index":{"_id":2} }
{"id": 2, "name": "共和国","email": "456@163.com","address": "陕西咸阳"}
{ "index":{"_id":3} }
{"id": 3, "name": "中华人民共和国国徽","email": "yongqian.zhao@deltaww.com","address": "陕西渭南"}
{ "index":{"_id":4} }
{"id": 4,"name": "长城下面的赵永前","email": "kobe@163.com","address": "陕西西安"}
{ "index":{"_id":4} }
{"id": 4,"name": "长城下面的赵永前","email": "kobe@163.com","address": "陕西西安"}
GET /kobezhao1/zhao/_search
{
"query": {
"match": {
"address": "渭南"
}
}
}
GET /sear_title/_mapping?pretty
POST /_analyze
{
"text":"秦国为了抵御北方,巩固中央集权而修建的美丽的万里长城下面的雅娜",
"analyzer":"ik_smart"
}
GET _cat/indices
PUT /kobezhao1
{
"settings": {
"number_of_shards": 4,
"number_of_replicas": 1
},
"mappings": {
"zhao": {
"properties": {
"id": {
"type": "long"
},
"name": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_max_word"
},
"email": {
"type": "keyword"
},
"address": {
"type": "text",
"analyzer": "ik_max_word",
"search_analyzer": "ik_smart"
}
}
}
}
}
GET /sear_title/title/_search
{
"query": {
"match_all": {}
}
}
POST sear_title/title/_delete_by_query?refresh&slices=5&pretty
{
"query": {
"match_all": {}
}
}
DELETE /_all