Yeah, works now. I wonder about SnowballAnalyzer and SnowballFilter classes. The ctor of the later uses introspection to instantiate the appropriate Stemmer. In most use cases that will be the same Stemmer from call to call. Seems like redundant work and objects created. Wouldn't it be better to have SnowballFilter 'cache' instances of previously instantiated Stemmers? I guess that would require that Snowball's Stemmers are thread safe....are they?
Otis --- Doug Cutting <[EMAIL PROTECTED]> wrote: > Otis Gospodnetic wrote: > > We had this in Lucene Sandbox? I never saw it committed, weird. > > I just committed it today. The commit message bounced because it was > > too big. > > > I can't get it from the repository, any idea why? > > Some protections were wrong. I think I fixed it. Try now. > > Doug > > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
