multi_field and sort

I've just release a 1.1.0 version with those changes in ICU:
GitHub - elastic/elasticsearch-analysis-icu: ICU Analysis plugin for Elasticsearch. Can be
installed (all the migrated plugins) can be installed on 0.18.x.

On Mon, Dec 12, 2011 at 5:30 PM, jprante joergprante@gmail.com wrote:

Hi,

if you have missed the ICU tokenizer und the ICU normalizer in
elasticsearch-analysis-icu plugin, it has just been added (thanks,
shay!)

Merge pull request #1 from jprante/master · elastic/elasticsearch-analysis-icu@44f9a2c · GitHub

For the records, an example usage would be

{
"index" : {
"analysis" : {
"analyzer" : {
"default" : {
"type" : "custom",
"tokenizer" : "icu_tokenizer",
"filter" : [ "snowball", "icu_folding" ]
}
},
"filter" : {
"snowball" : {
"type" : "snowball",
"language" : "German2"
}
}
}
}
}

for search in a german library catalog, with dozens of languages
including cjk, with the "umlaut folding" feature.

Jörg