Skip to content

Instantly share code, notes, and snippets.

@ifinoi
Created November 12, 2012 14:35
Show Gist options
  • Save ifinoi/4059747 to your computer and use it in GitHub Desktop.
Save ifinoi/4059747 to your computer and use it in GitHub Desktop.
Custom analyzer
"settings" : {
"analysis" : {
"analyzer" : {
"msg_search_analyzer" : {
"tokenizer" : "keyword",
"filter" : ["lowercase"]
},
"msg_index_analyzer" : {
"tokenizer" : "keyword",
"filter" : ["lowercase", "substring"]
}
},
"filter" : {
"substring" : {
"type" : "nGram",
"min_gram" : 2,
"max_gram" : 32
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment