-
Notifications
You must be signed in to change notification settings - Fork 9
/
stored_terms.sh
executable file
·74 lines (74 loc) · 2.3 KB
/
stored_terms.sh
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
62
63
64
65
66
67
68
69
70
71
72
73
74
#!/bin/bash
#
# This script demonstrates usage of stored terms and cache invalidation
#
curl -XDELETE "localhost:9200/test-idx?pretty"
curl -XDELETE "localhost:9200/test-idx-lookup?pretty"
curl -XPUT "localhost:9200/test-idx?pretty" -d '{
"settings": {
"index": {
"number_of_shards": 1,
"number_of_replicas": 0
}
},
"mappings": {
"doc": {
"properties": {
"foo": {
"type": "string",
"index": "not_analyzed"
}
}
}
}
}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "AAA"}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "BBB"}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "CCC"}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "DDD"}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "EEE"}'
curl -XPOST "localhost:9200/test-idx/doc?pretty" -d '{"foo": "FFF"}'
curl -XPOST "localhost:9200/test-idx-lookup/terms/1?pretty" -d '{
"list": ["AAA", "DDD"]
}'
curl -XPOST "localhost:9200/_refresh?pretty"
curl -XPOST 'localhost:9200/test-idx/_cache/clear?filter_keys=list_1&pretty'
curl "localhost:9200/test-idx/doc/_search?pretty" -d '{
"query": {
"filtered": {
"filter": {
"terms": {
"foo": {
"index": "test-idx-lookup",
"type": "terms",
"id": "1",
"path": "list"
},
"_cache_key": "list_1"
}
}
}
}
}'
curl -XPOST "localhost:9200/test-idx-lookup/terms/1?pretty" -d '{
"list": ["AAA", "DDD", "EEE"]
}'
curl -XPOST "localhost:9200/_refresh?pretty"
curl -XPOST 'localhost:9200/test-idx/_cache/clear?filter_keys=list_1&pretty'
curl "localhost:9200/test-idx/doc/_search?pretty" -d '{
"query": {
"filtered": {
"filter": {
"terms": {
"foo": {
"index": "test-idx-lookup",
"type": "terms",
"id": "1",
"path": "list"
},
"_cache_key": "list_1"
}
}
}
}
}'