Possible Duplicate:
How do you determine the ideal buffer size when using FileInputStream?
Is fread($file, 8192) any better or safer than fread($file, 10000)? Why do most examples use a power of two?
Is |
||||
|
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
Please see this great accepted answer to this question: How do you determine the ideal buffer size when using FileInputStream?.
Although the question is Java-related, the answer is not. Moreover it's pretty much language-agnostic. That answer covers all factors I'm aware of regarding buffer sizes. |
|||||
|
|
Either because:
|
|||||||||
|
|
Operating systems allocate memory in pages, (typically 4k - but sometimes 8k). In this case using a buffer size that is a multiple of 8192 bytes makes for more efficient memory allocation (since it is also caters for multiples of 4096 bytes). If you request 13k of memory, 16k will be used anyway, so why not ask for 16k to start with. CPU instruction sets are also optimised to work with data that is aligned to certain boundaries, be it 32, 64, or 128 bits. Working with data that is aligned to 3 bits, or 5 bits or something odd adds additional processing overhead. This is not specific to PHP, which uses the Zend Memory Manager on top of the OS' own memory management, and probably allocates larger blocks of memory up-front and takes the concern of memory management away from the user. |
|||
|
|