How can I use my own analyzer implementation using ElasticSearch

I implemented my own Lucene Analyzer. How can I use it with ElasticSearch?

+3
source share
1 answer

You will need to implement AnalysisBinderProcessor, which will make your analyzer available for elasticsearch and turn it into an elasticsearch plugin. The easiest way to do this is to start with one of the many examples available on github.

+4
source

All Articles