Ports 搜索

共有19,819项符合%22HTTP Server%22的查询结果,以下是第12,21112,220项(搜索用时0.015秒)
devel/Log-Minimal-0.19 (Score: 9.2878623E-4)
Minimal but customizable logger
Log::Minimal is Minimal but customizable log module.
devel/Log-Simple-1.8 (Score: 9.2878623E-4)
Basic runtime logger
Log::Simple is a Basic runtime logger.
devel/Log-Trace-1.070 (Score: 9.2878623E-4)
Provides a unified approach to tracing
A module to provide a unified approach to tracing.
devel/Log-Contextual-0.006005 (Score: 9.2878623E-4)
Perl extension for simple logging interface with a contextual log
This module is a simple interface to extensible logging. It is bundled with a really basic logger, Log::Contextual::SimpleLogger, but in general you should use a real logger instead of that. For something more serious but not overly complicated, try Log::Dispatchouli (see "SYNOPSIS" for example.) The reason for this module is to abstract your logging interface so that logging is as painless as possible, while still allowing you to switch from one logger to another.
devel/Logfile-Rotate-1.04 (Score: 9.2878623E-4)
Perl module to rotate logfiles
Perl module to rotate log files
devel/Lvalue-0.21 (Score: 9.2878623E-4)
Add lvalue getters and setters to existing objects
Lvalue takes an object produced by some other package and wraps it with lvalue functionality implemented with the object's original getter and setter routines. Lvalue assumes its object uses the relatively standard getter / setter idiom where any arguments is a setter, and no arguments is a getter.
devel/Memoize-ExpireLRU-0.55 (Score: 9.2878623E-4)
Expiry plug-in for Memoize that adds LRU cache expiration
Memoize::ExpireLRU is a module that implements LRU expiration for Memoize.
devel/Memoize-1.03 (Score: 9.2878623E-4)
Transparently speed up perl functions by caching return values
`Memoizing' a function makes it faster by trading space for time. It does this by caching the return values of the function in a table. If you call the function again with the same arguments, memoize jumps in and gives you the value out of the table, instead of letting the function compute the value all over again.
devel/Method-Alias-1.03 (Score: 9.2878623E-4)
Create method aliases (and do it safely)
Method::Alias is designed to be used as a pragma, to which you provide a set of pairs of method names. Only very minimal checking is done, if you wish to create infinite loops or what have you, you are more than welcome to shoot yourself in the foot. # Add a single method alias use Method::Alias 'foo' => 'bar'; # Add several method aliases use Method::Alias 'a' => 'b', 'c' => 'd', 'e' => 'f';
devel/Luka-1.08 (Score: 9.2878623E-4)
Exception handling and reporting framework
Luka is an exception handling and reporting framework. It's useful to look at it as an event handling framework. It comes from operational understanding of networks. Scenario that Luka is addressing is following: on a network with multiple hosts running multiple applications, it is very difficult to track operational status of all the functionality that those applications and hosts are meant to deliver. In order to make it easier, we decided to specify the error handling and reporting data model that each component delivering functionality has to conform to. What is a component? In most cases, it is a script, often run from cronjob, in some cases it is a class in an application. In all cases, a component has to successfully complete a task on which functionality of an application, or entire network, relies on. It is common practice that programmers choose their way of handling errors and reporting. Luka is an attempt to standardize that process. Its primary goal is to make it easier for smaller number of people to keep larger number of applications and networks running.