Skip to content

Instantly share code, notes, and snippets.

@jprante
Created May 10, 2012 08:28
Show Gist options
  • Save jprante/2651883 to your computer and use it in GitHub Desktop.
Save jprante/2651883 to your computer and use it in GitHub Desktop.
Mimic "objects" in search by "index_name"
{
[...]
"name" : {
"fields" : {
"xname" : {
"index" : "analyzed",
"omit_norms" : false,
"type" : "string",
"include_in_all" : true
}
},
"type" : "multi_field",
"include_in_all" : true
},
"altname" : {
"index_name" : "xname",
"boost" : 0.5,
"omit_term_freq_and_positions" : true,
"omit_norms" : false,
"type" : "string",
"include_in_all" : true
}
[...]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment