I have a question about the lucene's tokenfilters order. For example if I want to have following filters, what is lucene's order of using these filters?
1- LowerCaseFilter Cats => cats
2- TrimFilter Cats! => Cats
3- StopFilter a cat => cat
4- LengthFilter
5- StemmerFilter
6- SynonymFilter
I could not find any document explaining this sequence.