diff options
author | Inada Naoki <methane@users.noreply.github.com> | 2019-03-02 04:31:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-02 04:31:01 (GMT) |
commit | 4f1903061877776973c1bbfadd3d3f146920856e (patch) | |
tree | e9ef1a128bbee617b497bedfa52c583d36b48562 /Parser | |
parent | bcfa450f210074e16feb761ae5b3e966a2532fcf (diff) | |
download | cpython-4f1903061877776973c1bbfadd3d3f146920856e.zip cpython-4f1903061877776973c1bbfadd3d3f146920856e.tar.gz cpython-4f1903061877776973c1bbfadd3d3f146920856e.tar.bz2 |
bpo-36103: change default buffer size of shutil.copyfileobj() (GH-12115)
It is changed from 16KiB to 64KiB. The previous default value
is used since 1990.
coreutils chose 128 KiB as minimum buffer size for block device I/O.
But shutil.copyfileobj() can be used for non block devices.
So I choose more conservative value.
As my quick benchmark, performance difference between 64KiB and
128 KiB is up to ~5%. On the other hand, performance difference
between 32 KiB and 64 KiB can be more than 10% when file is fully
buffered.
This is why 64 KiB is rational value.
Diffstat (limited to 'Parser')
0 files changed, 0 insertions, 0 deletions