[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-05-28 Thread Martin Wiesner (JIRA)


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

Martin Wiesner updated TOMEE-2509:
--
Affects Version/s: 8.0.0-M3

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 8.0.0-M1, 8.0.0-M2, 8.0.0-M3
>Reporter: bd2019us
>Priority: Major
>  Labels: patch, pull-request-available
> Fix For: 8.0.0-Final, 8.0.0-M4
>
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-05-28 Thread Martin Wiesner (JIRA)


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

Martin Wiesner updated TOMEE-2509:
--
Fix Version/s: 8.0.0-M4
   8.0.0-Final

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 8.0.0-M1, 8.0.0-M2
>Reporter: bd2019us
>Priority: Major
>  Labels: patch, pull-request-available
> Fix For: 8.0.0-Final, 8.0.0-M4
>
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-05-28 Thread Martin Wiesner (JIRA)


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

Martin Wiesner updated TOMEE-2509:
--
Affects Version/s: 8.0.0-M1
   8.0.0-M2

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Affects Versions: 8.0.0-M1, 8.0.0-M2
>Reporter: bd2019us
>Priority: Major
>  Labels: patch, pull-request-available
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-04-13 Thread bd2019us (JIRA)


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

bd2019us updated TOMEE-2509:

Attachment: 1.patch

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Reporter: bd2019us
>Priority: Major
>  Labels: pull-request-available
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-04-13 Thread bd2019us (JIRA)


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

bd2019us updated TOMEE-2509:

Labels: patch pull-request-available  (was: patch)

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Reporter: bd2019us
>Priority: Major
>  Labels: patch, pull-request-available
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-04-13 Thread bd2019us (JIRA)


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

bd2019us updated TOMEE-2509:

Labels: patch  (was: pull-request-available)

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Reporter: bd2019us
>Priority: Major
>  Labels: patch
> Attachments: 1.patch
>
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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


[jira] [Updated] (TOMEE-2509) wrap FileWriter with BufferedWriter for better performance

2019-04-13 Thread ASF GitHub Bot (JIRA)


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

ASF GitHub Bot updated TOMEE-2509:
--
Labels: pull-request-available  (was: )

> wrap FileWriter with BufferedWriter for better performance
> --
>
> Key: TOMEE-2509
> URL: https://issues.apache.org/jira/browse/TOMEE-2509
> Project: TomEE
>  Issue Type: Bug
>Reporter: bd2019us
>Priority: Major
>  Labels: pull-request-available
>
> Location: 
> maven/jarstxt-maven-plugin/src/main/java/org/apache/openejb/maven/jarstxt/JarsTxtMojo.java
> When writing a file intensively in a loop, the FileWriter should be wrapped 
> with a BufferedWriter for better performance since it can significantly 
> reduce the overhead of IO operation.



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