On Fri, Nov 19, 2010 at 5:41 PM, Mark Kristensson <[email protected]> wrote: > Here's the changes I made to org.apache.lucene.util.StringHelper: > > //public static StringInterner interner = new SimpleStringInterner(1024,8);
As Mike said, the real fix for trunk is to get rid of interning. But for your version, you could try making the string intern cache larger. StringHelper.interner = new SimpleStringInterner(300000,8); -Yonik http://www.lucidimagination.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
