Length Token Filter

windoz wrote:

I'm new to Elasticsearch and want to know how I can use the length
token filter. I'm trying to limit my search to exclude two letter
words.

Can you give us an example of what you've tried based on the
documentation?

Note that there's a length token filter at the bottom of the sample
config:

myTokenFilter2 :
   type : length
   min : 0
   max : 2000

-Drew