afs opened a new issue, #1501: URL: https://github.com/apache/jena/issues/1501
### Version 4.6.0 ### Feature https://lists.apache.org/thread/z8cl2kwsdmg47l5o05xsyvsnc3s3ozzp > We checked code and the Apache Commons Compress docs, a colleague spotted the hint at https://commons.apache.org/proper/commons-compress/examples.html#Buffering : > > > The stream classes all wrap around streams provided by the calling code and they work on them directly without any additional buffering. On the other hand most of them will benefit from buffering so it is highly recommended that users wrap their stream in Buffered(In|Out)putStreams before using the Commons Compress API. > we were curious about this statement, checked org.apache.jena.atlas.io.IO class and added one line in openFileEx > > in = new BufferedInputStream(in); > > which wraps the file stream before its passed to the decompressor streams ### Are you interested in contributing a solution yourself? Yes -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
