Created
July 5, 2015 16:57
-
-
Save zopyx/ffa3ea4eccfc798e386f to your computer and use it in GitHub Desktop.
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
{ | |
"fields": [ "_id" ], | |
"query" : { | |
"match": { | |
"content": { | |
"query": "foo bar" | |
} | |
} | |
}, | |
"rescore": { | |
"window_size": 50, | |
"query": { | |
"rescore_query" : { | |
"match_phrase": { | |
"content": { | |
"query": "foo bar", | |
"phrase_slop": 1 | |
} | |
} | |
}, | |
"rescore_query_weight" : 10 | |
} | |
}, | |
"highlight" : { | |
"order" : "score", | |
"fields" : { | |
"content" : { | |
"fragment_size" : 150, | |
"number_of_fragments" : 3, | |
"highlight_query": { | |
"bool": { | |
"must": { | |
"match": { | |
"content": { | |
"query": "foo bar" | |
} | |
} | |
}, | |
"should": { | |
"match_phrase": { | |
"content": { | |
"query": "foo bar", | |
"phrase_slop": 1, | |
"boost": 10.0 | |
} | |
} | |
}, | |
"minimum_should_match": 0 | |
} | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment