Re: how to use my customer lucene analyzer(tokenizer)?

2014-08-26 Thread art
Thanks Jun, that was helpful. It helped me to realize I had not fully connected my analyzer plugin. On Thursday, August 21, 2014 11:23:47 PM UTC-7, Jun Ohtani wrote: Hi Art, I wrote an example specifying the kuromoji analyzer(kuromoji) and custom analyzer(my_analyzer) for a field. curl

Re: how to use my customer lucene analyzer(tokenizer)?

2014-08-22 Thread Jun Ohtani
Hi Art, I wrote an example specifying the kuromoji analyzer(kuromoji) and custom analyzer(my_analyzer) for a field. curl -XPUT http://localhost:9200/kuromoji-sample; -d' { settings: { index: { analysis: { analyzer: { my_analyzer: { tokenizer:

Re: how to use my customer lucene analyzer(tokenizer)?

2014-08-21 Thread art
I have the same question about using an analyzer I have written as a plug-in for ElasticSearch 1.3. https://github.com/elasticsearch/elasticsearch-analysis-kuromoji/blob/es-1.3/README.md demonstrates only how to use the tokenizers in combination with the built-in CustomAnalyzer. They do not

how to use my customer lucene analyzer(tokenizer)?

2014-08-05 Thread fancyerii
I want to use my own Chinese analyzer and I can write lucene analyzer class myself. How can I integrate it to elasticsearch? I googled and found http://www.elasticsearch.org/guide/en/elasticsearch/guide/current/custom-analyzers.html. But it only combine existing tokenizers and filters. I can

Re: how to use my customer lucene analyzer(tokenizer)?

2014-08-05 Thread Tihomir Lichev
I think you should write your own plugin with your analyzer implementation, so you can register your analyzer into the ES and use it later on. You could have a look and see how it done maybe in this plugin: https://github.com/elasticsearch/elasticsearch-analysis-kuromoji 05 август 2014,

Re: how to use my customer lucene analyzer(tokenizer)?

2014-08-05 Thread Jun Ohtani
Hi, I think this plugin will be helpful for you. https://github.com/elasticsearch/elasticsearch-analysis-kuromoji 2014/08/05 15:58 fancye...@gmail.com: I want to use my own Chinese analyzer and I can write lucene analyzer class myself. How can I integrate it to elasticsearch? I googled and