Ports Search

Results 171180 of 19,819 for %22HTTP Server%22.(0.005 seconds)
www/HTTP-Engine-Middleware-0.22 (Score: 0.053939596)
Perl extension for official distribution of HTTP::Engine
HTTP::Engine::Middleware is official middlewares distribution of HTTP::Engine.
www/http_router-0.11.2 (Score: 0.05361194)
HTTP router for use in Rack
This library allows you to recognize and build URLs in a Rack application.
www/HTTP-Async-0.30 (Score: 0.0534483)
Process multiple HTTP requests in parallel without blocking
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/net-http-persistent-2.9.4 (Score: 0.05297037)
Manages persistent connections using Net::HTTP
net-http-persistent manages persistent connections using Net::HTTP plus a speed fix for Ruby 1.8. It's thread-safe too! 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 handle reconnection gracefully. Net::HTTP::Persistent supports reconnection and retry according to RFC 2616.
www/Net-Async-HTTP-0.41 (Score: 0.0529203)
Use HTTP with IO::Async
Net::Async::HTTP implements an asynchronous HTTP user agent. It sends requests to servers, returning Future instances to yield responses when they are received. The object supports multiple concurrent connections to servers, and allows multiple requests in the pipeline to any one connection. Normally, only one such object will be needed per program to support any number of requests. As well as using futures the module also supports a callback-based interface. Net::Async::HTTP optionally supports SSL connections, if IO::Async::SSL is installed. If so, SSL can be requested either by passing a URI with the https scheme, or by passing a true value as the SSL parameter.
www/HTTP-Response-Encoding-0.06 (Score: 0.052743316)
Adds encoding() to HTTP::Response
This module adds the following methods to HTTP::Response objects. $res->charset Tells the charset exactly as appears in the Content-Type: header. Note that the presence of the charset does not guarantee if the response content is decodable via Encode. $res->encoder Returns the corresponding encoder object or undef if it can't. $res->encoding Tells the content encoding in the canonical name in Encode. Returns undef if it can't. $res->decoded_content Discontinued since HTTP::Message already has this method.
www/HTTP-Tiny-SPDY-0.020 (Score: 0.052705295)
Subclass of HTTP::Tiny with SPDY support
HTTP::Tiny::SPDY is a subclass of HTTP::Tiny with added support for the SPDY protocol. It is intended to be fully compatible with HTTP::Tiny so that it can be used as a drop-in replacement for it.
www/mini_httpd-1.25 (Score: 0.052533004)
Small HTTP server with support for GET, HEAD, POST, CGI, SSL, IPv6
mini_httpd is a small HTTP server. Its performance is not great, but for low or medium traffic sites it's quite adequate. It implements all the basic features of an HTTP server, including: - GET, HEAD, and POST methods - CGI and basic authentication support - Security against ".." filename snooping - The common MIME types - Trailing-slash redirection - index.html, index.htm, index.cgi - Directory listings - Multihoming (virtual hosting) - Standard logging - Custom error pages It can also be configured to do SSL/HTTPS and IPv6.
www/HTTP-Headers-Fast-0.17 (Score: 0.052490287)
Perl extension for faster implementation of HTTP::Headers
HTTP::Headers::Fast is a perl class for parsing/writing HTTP headers. The interface is same as HTTP::Headers.
www/em-http-request-1.1.3 (Score: 0.05247698)
EventMachine based, async HTTP Request client
Async (EventMachine) HTTP client, with support for: o Asynchronous HTTP API for single & parallel request execution o Keep-Alive and HTTP pipelining support o Auto-follow 3xx redirects with max depth o Automatic gzip & deflate decoding o Streaming response processing o Streaming file uploads o HTTP proxy and SOCKS5 support o Basic Auth & OAuth o Connection-level & Global middleware support o HTTP parser via http_parser.rb o Works wherever EventMachine runs: Rubinius, JRuby, MRI