Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What exactly does the Standard tokenfilter do in Elasticsearch?

There are no examples in the documentation, and I was just wondering what to expect from input I give it.

like image 763
concept47 Avatar asked Jun 04 '13 22:06

concept47


1 Answers

Before Elasticsearch 0.16 (Lucene 3.1) the standard token filter was "normalizing tokens extracted by standard tokenizer". To be specific, it was removing 's at the end of words and dots in acronyms. So, back then Apple's C.E.O would become Apple CEO after passing the standard filter. Starting with Elasticsearch 0.16 (Lucene 3.1) the standard token filter does nothing (at least at the moment). It simply passes tokens to the next filter in the chain.

like image 62
imotov Avatar answered Sep 23 '22 02:09

imotov