in reply to Re: LWP::UserAgent lengthy download
in thread LWP::UserAgent lengthy download

But is this available in LWP::UserAgent - I can't find reference to it.

Replies are listed 'Best First'.
Re^3: LWP::UserAgent lengthy download
by Corion (Patriarch) on Feb 17, 2010 at 10:22 UTC

    If you don't make an explicit request for an image (URL), LWP::UserAgent won't download the image. That's how HTTP works.

      Hi, thanks for your response. I'm trying to understand what is happening. From what you are saying contrary to viewing from a browser, it is unlikely that the delay is being caused by having to wait for images to download as there is no specific request - or is there?

      $resp = $ua->get("http://mysite.net.net/etc;

        Maybe now is a good moment to learn about HTTP, and the request-response mechanism?