Vitalii Tymchyshyn created IO-329:
-------------------------------------

             Summary: FileUtils.writeLines uses unbuffered IO
                 Key: IO-329
                 URL: https://issues.apache.org/jira/browse/IO-329
             Project: Commons IO
          Issue Type: Bug
          Components: Streams/Writers
    Affects Versions: 2.3
            Reporter: Vitalii Tymchyshyn


FileUtils.writeLines looks like next:

 out = openOutputStream(file, append);
 IOUtils.writeLines(lines, lineEnding, out, encoding);

openOutputStream opens plain FileOutputStream without any buffering and 
IOUtils.writeLines does not add abyt buffering. This means each line require 2 
write syscalls (one for the line and one for line separator). This makes call 
very slow, especially for short lines

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to