edkinsgael / airhead-research

Automatically exported from code.google.com/p/airhead-research
0 stars 0 forks source link

PorterStemmer is single threaded and needs to be multi-threaded #40

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
The PorterStemmer currently uses class-scope side-effects to stem tokens. 
The class needs to be rewritten such that the stem(String) method doesn't
change the state of the object and so is thread-safe (currently is
synchronized).

Original issue reported on code.google.com by David.Ju...@gmail.com on 21 Jan 2010 at 10:55