ports/www/rubygem-net-http-persistent/pkg-descr
Stefan Eßer fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00

8 lines
604 B
Text

net-http-persistent manages persistent connections using Net::HTTP including a
thread pool for connecting to multiple hosts. Using persistent HTTP connections
can dramatically increase the speed of HTTP. Creating a new HTTP connection for
every request involves an extra TCP round-trip and causes TCP congestion
avoidance negotiation to start over. Net::HTTP supports persistent connections
with some API methods but does not make setting up a single persistent
connection or managing multiple connections easy. Net::HTTP::Persistent wraps
Net::HTTP and allows you to focus on how to make HTTP requests.