Created
August 29, 2014 07:14
-
-
Save radu-gheorghe/16fcb90f5cb835f0b2e6 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
{ | |
"size": 10, | |
"query": { | |
"filtered": { | |
"query": { | |
"bool": { | |
"should": [ | |
{ | |
"multi_match": { | |
"analyzer": "whitespace_shingle", | |
"type": "cross_fields", | |
"query": "Ancients", | |
"fields": [ | |
"title.raw^60", | |
"authors.raw^40", | |
"subjects.raw^20", | |
"title", | |
"authors", | |
"subjects" | |
] | |
} | |
}, | |
{ | |
"multi_match": { | |
"type": "cross_fields", | |
"query": "Ancients", | |
"fields": [ | |
"title.stemmed", | |
"subjects.stemmed" | |
] | |
} | |
} | |
] | |
} | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment