サービスインタフェースのドキュメントの取得
2747 ワード
1.サービス基本情報
1.1内部HTTPサービスアドレス
curl -XGET 'ip:port/index_name/index_type/_search' -u elastic:passwd -d '{"query":{"match_all":{}}}'
二、機能インタフェース
{
"query": {
"bool": {
"should": [
{
"match": {
"name": {
"query": " "
}
}
}
]
}
}
}
{
"query": {
"bool": {
"should": [
{
"match": {
"nickname": {
"query": " ",
"boost": 5.0
}
}
},
{
"match": {
"intro": {
"query": " "
}
}
},
{
"match": {
"mobilephone": {
"query": "18701052871",
"boost": 2.0
}
}
},
{
"match": {
"wechat": {
"query": "yunfan0428",
"boost": 2.0
}
}
}
]
}
}
}
{
"query": {
"bool": {
"should": [
{
"match": {
"name": {
"query": " ",
"boost": 2.0
}
}
},
{
"match": {
"content": {
"query": " "
}
}
}
]
}
}
}