SadEmperor has asked for the wisdom of the Perl Monks concerning the following question:
That's how to decide the block size ($blksize) to get the best performance, and is that sensitive to file system, if I use my script under Linux, shall I modify the value ?my $blksize = int ($filesize / 10); my $num_read = sysread(SRC, $buffer, $blksize);
|
|---|