Created
November 25, 2015 03:12
-
-
Save johtani/0554f54ae7d9aea375cb to your computer and use it in GitHub Desktop.
Example url search
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PUT hoge_index | |
{ | |
"settings": { | |
"number_of_shards": 1, | |
"number_of_replicas": 0 | |
}, | |
"mappings": { | |
"hoge": { | |
"properties": { | |
"text": { | |
"type": "string", | |
"index": "not_analyzed" | |
} | |
} | |
} | |
} | |
} | |
PUT hoge_index/hoge/1 | |
{ | |
"text": "yomiuri.co.jp" | |
} | |
GET hoge_index/hoge/_search | |
{ | |
"query": { | |
"bool": { | |
"must": [ | |
{"term": { | |
"text": { | |
"value": "yomiuri.co.jp" | |
} | |
}} | |
], | |
"must_not": [], | |
"should": [] | |
} | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment