diff options
Diffstat (limited to 'tests/files/POST_search_rescore.txt')
-rw-r--r-- | tests/files/POST_search_rescore.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/files/POST_search_rescore.txt b/tests/files/POST_search_rescore.txt new file mode 100644 index 0000000..81fcd96 --- /dev/null +++ b/tests/files/POST_search_rescore.txt @@ -0,0 +1,26 @@ +POST /_search +{ + "query" : { + "match" : { + "message" : { + "operator" : "or", + "query" : "the quick brown" + } + } + }, + "rescore" : { + "window_size" : 50, + "query" : { + "rescore_query" : { + "match_phrase" : { + "message" : { + "query" : "the quick brown", + "slop" : 2 + } + } + }, + "query_weight" : 0.7, + "rescore_query_weight" : 1.2 + } + } +} |