You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "bd2019us (JIRA)" <ji...@apache.org> on 2019/04/14 04:15:00 UTC

[jira] [Updated] (IGNITE-11741) wrap FileWriter with BufferedWriter for better performance

     [ https://issues.apache.org/jira/browse/IGNITE-11741?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

bd2019us updated IGNITE-11741:
------------------------------
    Description: 
Location: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/runners/RemoteClientTmpHelper.java

FileWriter.write() method is intensively invoked in loops, which is a bad practice and can damage the performance of program since it may cause IO bottleneck. On the contrary, the BufferedWriter is recommended for a better performance with caches. 
        Summary: wrap FileWriter with BufferedWriter for better performance  (was: wr)

> wrap FileWriter with BufferedWriter for better performance
> ----------------------------------------------------------
>
>                 Key: IGNITE-11741
>                 URL: https://issues.apache.org/jira/browse/IGNITE-11741
>             Project: Ignite
>          Issue Type: Bug
>            Reporter: bd2019us
>            Priority: Major
>
> Location: ignite-tc-helper-web/src/main/java/org/apache/ignite/ci/runners/RemoteClientTmpHelper.java
> FileWriter.write() method is intensively invoked in loops, which is a bad practice and can damage the performance of program since it may cause IO bottleneck. On the contrary, the BufferedWriter is recommended for a better performance with caches. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)