BufferedInputStream's Default Buffer Size Compared to Moore's Law
2nd in a series of posts about java.io.BufferedInputStream's Default Buffer Size
BufferedInputStream Default Buffer Size Series: Previous | Next
We can see that Java's BufferedInputStream (BIS) default buffer size has grown over time. I thought it would be interesting to compare it against other metrics in Computer Science, the most famous of which is Moore's Law. From Wikipedia:
Moore's law describes a long-term trend in the history of computing hardware, in which the number of transistors that can be placed inexpensively on an integrated circuit has doubled approximately every two years.So, taking the data points from general purpose CPUs released during the years since Java's debut, I composed the below graph.

In the next post I'll be comparing BIS's default buffer size with the size of hard disks over time.
BufferedInputStream Default Buffer Size Series: Previous | Next