-
-
Save polyfractal/1a6d61a56a0267fb5651 to your computer and use it in GitHub Desktop.
This file contains 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 /syn | |
{ | |
"index": { | |
"analysis": { | |
"analyzer": { | |
"synonym": { | |
"tokenizer": "standard", | |
"filter": [ | |
"synonym" | |
] | |
} | |
}, | |
"filter": { | |
"synonym": { | |
"type": "synonym", | |
"synonyms": [ | |
"apple, orange, fruit", | |
"smoothie, shake, milkshake" | |
] | |
} | |
} | |
} | |
} | |
} | |
POST /syn/test/ | |
{ | |
"title": "apple healthy smoothie" | |
} | |
POST /syn/test/ | |
{ | |
"title": "apple healthy nutty super great more than 3 tokens smoothie" | |
} | |
GET /syn/test/_search | |
{ | |
"query": { | |
"match": { | |
"title": { | |
"type": "phrase", | |
"query": "orange milkshake", | |
"slop": 3, | |
"analyzer": "synonym" | |
} | |
} | |
} | |
} | |
GET /syn/test/_search | |
{ | |
"query": { | |
"match": { | |
"title": { | |
"type": "phrase", | |
"query": "fruit shake", | |
"slop": 3, | |
"analyzer": "synonym" | |
} | |
} | |
} | |
} | |
//Note that if you omit the analyzer (and use the default), | |
//it won't find anything since the synonyms are not indexed | |
GET /syn/test/_search | |
{ | |
"query": { | |
"match": { | |
"title": { | |
"type": "phrase", | |
"query": "fruit shake", | |
"slop": 3 | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment