in reply to Re^3: Net::FTP Upload much slower than Dos prompt command ftp
in thread Net::FTP Upload much slower than Dos prompt command ftp
I believe the slowdown is caused by the default blocksize used (10k):
${*$ftp}{'net_ftp_blksize'} = abs($arg{'BlockSize'} || 10240);
You can easily test this hypothesis by supplying a parameter BlockSize => 4096 to the constructor.
I'd step through 1024, 2048, 4096 etc. and see what difference if any that makes to your throughput.
|
|---|