-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelasticsearch_examples.txt
61 lines (59 loc) · 1.57 KB
/
elasticsearch_examples.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
=============== Indexer setting =======================
PUT : localhost:9200/news
JSON :
{
"settings": {
"index": {
"analysis": {
"tokenizer": {
"komoran": {
"type": "komoran-tokenizer"
}
},
"analyzer": {
"komoran-analyzer": {
"type": "custom",
"tokenizer": "komoran"
}
}
}
}
},
"mappings": {
"properties": {
"title": {
"type": "text",
"analyzer" : "komoran-analyzer",
"search_analyzer" : "komoran-analyzer"
},
"body": {
"type": "text",
"analyzer" : "komoran-analyzer",
"search_analyzer" : "komoran-analyzer"
}
}
}
}
============== Indexing document ================
PUT : localhost:9200/news/_doc/1
JSON :
{
"title" : "코모란이 드디어 elasticsearch 플러그인을 지원하다!",
"body" : "바람과 함께 사라지다를 봤다는 이 것을 드디어 색인이 가능합니다!"
}
============== Searching document ====================
GET : localhost:9200/news2/_search
JSON :
{
"query": {
"multi_match": {
"operator": "and",
"type" : "cross_fields",
"query": "코모란 바람과 함께 사라지다",
"fields": [
"body",
"title"
]
}
}
}