in reply to Re^2: LWP slow downloads on windows (50 times faster?)
in thread LWP slow downloads on windows
I can't see any problem with that. You might save a little more time by avoiding copying the strings twice:
push(@total_content, $content); ... $response->add_content(join('', map $$_, @total_content));
|
|---|