Blogging Roller
Dave Johnson on social software, open source and Java
Dave Johnson on social software, open source and Java
Minimize use of System.out.println. Because it seems harmless, this commonly used application development legacy is overlooked for the performance problem it really is. Because System.out.println statements and similar constructs synchronize processing for the duration of disk I/O, they can significantly slow throughput.I did not know that.
Tags: Java