Bug 110469 - [NEW PORT] devel/p5-HTTP-Async: Process multiple HTTP requests in parallel without blocking
Summary: [NEW PORT] devel/p5-HTTP-Async: Process multiple HTTP requests in parallel wi...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Rong-En Fan
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-03-18 09:20 UTC by chinsan
Modified: 2007-03-18 17:40 UTC (History)
0 users

See Also:


Attachments
p5-HTTP-Async-0.07.shar (2.93 KB, text/plain)
2007-03-18 09:20 UTC, chinsan
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description chinsan freebsd_committer freebsd_triage 2007-03-18 09:20:03 UTC
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.

WWW: http://search.cpan.org/dist/HTTP-Async/

Generated with FreeBSD Port Tools 0.77
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2007-03-18 09:20:18 UTC
Responsible Changed
From-To: freebsd-ports-bugs->rafan

rafan@ wants this PRs
Comment 2 dfilter service freebsd_committer freebsd_triage 2007-03-18 17:31:45 UTC
rafan       2007-03-18 17:31:39 UTC

  FreeBSD ports repository

  Modified files:
    www                  Makefile 
  Added files:
    www/p5-HTTP-Async    Makefile distinfo pkg-descr pkg-plist 
  Log:
  Add p5-HTTP-Async 0.07, process multiple HTTP requests in parallel
  without blocking.
  
  PR:             ports/110469
  Submitted by:   chinsan
  
  Revision  Changes    Path
  1.1745    +1 -0      ports/www/Makefile
  1.1       +29 -0     ports/www/p5-HTTP-Async/Makefile (new)
  1.1       +3 -0      ports/www/p5-HTTP-Async/distinfo (new)
  1.1       +12 -0     ports/www/p5-HTTP-Async/pkg-descr (new)
  1.1       +7 -0      ports/www/p5-HTTP-Async/pkg-plist (new)
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
Comment 3 Rong-En Fan freebsd_committer freebsd_triage 2007-03-18 17:33:58 UTC
State Changed
From-To: open->closed

New port added. Thanks!