0
0
bleve/analysis/language/en
Marty Schoch 9e9f172f81 speed up english possessive filter
previous impl always did full utf8 decode of rune
if we assume most tokens are not possessive this is unnecessary
and even if they are, we only need to chop off last to runes
so, now we only decode last rune of token, and if it looks like
s/S then we proceed to decode second to last rune, and then
only if it looks like any form of apostrophe, do we make any
changes to token, again by just reslicing original to chop
off the possessive extension
2016-09-11 12:55:03 -04:00
..
analyzer_en_test.go changed en analyzer to use pure go components 2014-10-21 16:38:58 -04:00
analyzer_en.go added some godoc documentation for the en analyzer 2015-11-18 15:28:57 +13:00
possessive_filter_en_test.go speed up english possessive filter 2016-09-11 12:55:03 -04:00
possessive_filter_en.go speed up english possessive filter 2016-09-11 12:55:03 -04:00
stop_filter_en.go add newline between license and package 2014-09-02 10:54:50 -04:00
stop_words_en.go added some godoc documentation for the en analyzer 2015-11-18 15:28:57 +13:00