Skip to content

Instantly share code, notes, and snippets.

@duydo
Created October 20, 2015 16:38
Show Gist options
  • Save duydo/72b1f23b2623f805da3c to your computer and use it in GitHub Desktop.
Save duydo/72b1f23b2623f805da3c to your computer and use it in GitHub Desktop.
PUT /articles
{
"settings": {
"analysis": {...}
},
"mappings": {
"title": {
"properties": {
"title": {
"type": "string",
"fields": {
"de": {
"type": "string",
"analyzer": "german"
},
"en": {
"type": "string",
"analyzer": "english"
},
"fr": {
"type": "string",
"analyzer": "french"
},
"es": {
"type": "string",
"analyzer": "spanish"
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment