libhttp-async-perl 0.23-1 source package in Ubuntu

Changelog

libhttp-async-perl (0.23-1) unstable; urgency=low


  * Team upload.

  * New upstream release.
  * Drop patch, merged upstream.

 -- gregor herrmann <email address hidden>  Sun, 03 Nov 2013 20:25:42 +0100

Upload details

Uploaded by:
Debian Perl Group
Uploaded to:
Sid
Original maintainer:
Debian Perl Group
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Trusty release universe perl

Builds

Trusty: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
libhttp-async-perl_0.23-1.dsc 2.2 KiB 207f700888651d635fd1576812758a0187fecf776067e8e80d27e1671ba91def
libhttp-async-perl_0.23.orig.tar.gz 20.1 KiB 3aadae6cd4638bc3624b7b05c1e14c3bd5850a4e1e8dca825666e6c3f2d143d7
libhttp-async-perl_0.23-1.debian.tar.gz 2.5 KiB 9955f4cdee7550dfc2d2e9172079844d886227eafc3169ae91e1a201c20d65b0

Available diffs

No changes file available.

Binary packages built by this source

libhttp-async-perl: module for parallel non-blocking processing of multiple HTTP requests

 Although using the conventional LWP::UserAgent is fast and easy it does have
 some drawbacks - the code execution blocks until the request has been
 completed and it is only possible to process one request at a time.
 HTTP::Async attempts to address these limitations.
 .
 It gives you a 'Async' object that you can add requests to, and then get the
 requests off as they finish. The actual sending and receiving of the requests
 is abstracted. As soon as you add a request it is transmitted, if there are
 too many requests in progress at the moment they are queued. There is no
 concept of starting or stopping - it runs continuously.
 .
 Whilst it is waiting to receive data it returns control to the code that
 called it meaning that you can carry out processing whilst fetching data from
 the network. All without forking or threading - it is actually done using
 select lists.