rm5248 opened a new issue, #570: URL: https://github.com/apache/logging-log4cxx/issues/570
I came across this video the other day: https://www.youtube.com/watch?v=nH1YT1mrPt0 It's a faster(but much less flexible) way of doing logging. The most important thing that I got out of it was the fact that the C library will do buffering. The lowest level that we do is to use [`fputs`](https://github.com/apache/logging-log4cxx/blob/18dd6730085fd2158e64e5588da56f98852a6812/src/main/cpp/systemoutwriter.cpp#L78). This will go through the C library and use the builtin C library buffering. Since we have the ability to buffer data in log4cxx already using a `BufferedWriter`, do a test to see if it would be faster to avoid the C library buffering and do a `write()` system call directly to write data out. -- 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]
