Ports Search

Results 17,34117,350 of 19,819 for %22HTTP Server%22.(0.023 seconds)
devel/Cache-Memcached-Tie-0.09 (Score: 7.739885E-4)
Use Cache::Memcached::Fast like hash
Use Cache::Memcached::Fast like hash.
devel/Cache-Simple-TimedExpiry-0.27 (Score: 7.739885E-4)
Lightweight cache with timed expiration
A lightweight cache with timed expiration.
devel/Carp-Always-Color-0.07 (Score: 7.739885E-4)
Carp::Always, but with color
Stack traces are hard to read when the messages wrap, because it's hard to tell when one message ends and the next message starts. Carp::Always::Color just colors the first line of each stacktrace, based on whether it's a warning or an error. If messages are being sent to a terminal, it colors them with terminal escape codes, otherwise it colors them with HTML (ideas for more intelligent behavior here are welcome).
devel/Carp-Assert-More-1.14 (Score: 7.739885E-4)
Convenience wrappers around Carp::Assert
Carp::Assert::More is a set of wrappers around the Carp::Assert functions to make the habit of writing assertions even easier. Everything in here is effectively syntactic sugar. There's no technical reason to use assert_isa( $foo, 'HTML::Lint' ); instead of assert( defined $foo ); assert( ref($foo) eq 'HTML::Lint' ); other than readability and simplicity of the code. My intent here is to make common assertions easy so that we as programmers have no excuse to not use them.
devel/Carp-Clan-Share-0.013 (Score: 7.739885E-4)
Share your Carp::Clan settings with your whole Clan
This is a very lightweight helper module (actually just an import method) that will automagically create a __PACKAGE__::Carp module for you.
devel/Class-Accessor-Chained-0.01 (Score: 7.739885E-4)
Make chained accessors
A chained accessor is one that always returns the object when called with parameters (to set), and the value of the field when called with no arguments.
devel/Class-Accessor-Children-0.02 (Score: 7.739885E-4)
Automated child-class/accessor generation
This module automagically generates child classes which have accessor/mutator methods.
devel/Class-Accessor-Complex-1.100880 (Score: 7.739885E-4)
Arrays, hashes, booleans, integers, sets, and more
This module generates accessors for your class in the same spirit as Class::Accessor does. While the latter deals with accessors for scalar values, this module provides accessor makers for arrays, hashes, integers, booleans, sets and more. As seen in the synopsis, you can chain calls to the accessor makers. Also, because this module inherits from Class::Accessor, you can put a call to one of its accessor makers at the end of the chain. The accessor generators also generate documentation ready to be used with Sub::Documentation.
Perl extension for constructor generator
This module generates accessors for your class in the same spirit as Class::Accessor does. While the latter deals with accessors for scalar values, this module provides accessor makers for rather flexible constructors.
Fast accessors with data containment
This module does two things differently to the venerable Class::Accessor::Fast: - Fields are stored at arms-length within a single hash value of $self, rather than directly in the $self blessed referent. - new() allows mixin into an existing object, rather than creating and returning a new blessed hashref.