StandardBenchmarker#makeDocument does not explicitly close opened files
-----------------------------------------------------------------------

                 Key: LUCENE-829
                 URL: https://issues.apache.org/jira/browse/LUCENE-829
             Project: Lucene - Java
          Issue Type: Bug
            Reporter: Karl Wettin


StandardBenchmarker#makeDocument(File in, String[] tags, boolean stored, 
boolean tokenized, boolean tfv)

        BufferedReader reader = new BufferedReader(new FileReader(in));

Above reader is not closed until GC hits it. Can cause problems in cases where 
ulimit is set too low.

I did this:

        while ((line = reader.readLine()) != null)
        {
            body.append(line).append(' ');
        }
+        reader.close();

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to