don't reuse byte[] in IndexInput/Output for read/writeString ------------------------------------------------------------
Key: LUCENE-2422 URL: https://issues.apache.org/jira/browse/LUCENE-2422 Project: Lucene - Java Issue Type: Bug Reporter: Michael McCandless Assignee: Michael McCandless Fix For: 2.9.3, 3.0.2, 3.1, 4.0.0 IndexInput now holds a private "byte[] bytes", which it re-uses for reading strings. Likewise, IndexOutput holds a UTF8Result (which holds "byte[] bytes"), re-used for writing strings. These are both dangerous, since on reading or writing immense strings, we never free this storage. We don't use read/writeString in very perf sensitive parts of the code, so, I think we should not reuse the byte[] at all. I think this is likely the cause of the recent "IndexWriter and memory usage" thread, started by Ross Woolf on java-u...@. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org For additional commands, e-mail: dev-h...@lucene.apache.org