Ports Search

Results 11,69111,700 of 19,819 for %22HTTP Server%22.(0.009 seconds)
devel/CPANPLUS-0.9160 (Score: 9.2878623E-4)
Ameliorated interface to the CPAN
The "CPANPLUS" library is an API to the "CPAN" mirrors and a collection of interactive shells, command line programs, daemons, etc, that use this API.
devel/Cache-AgainstFile-1.016 (Score: 9.2878623E-4)
Cache data structures parsed from files, watching for updates
A module that caches a data structure against a filename, statting the file to determine whether it has changed and needs to be re-parsed. You supply a routine to generate the data structure given the filename. This module is recommended for files which change infrequently but are read often, especially if they are expensive to parse. This approach has the advantage over lazy caching that multiple processes holding a cache will all update at the same time so you will not get inconsistent results if you request data from different processes. The module itself is simply a factory for various backend modules. The distribution includes backends for in-memory caching or file caching using Storable, plus an adaptor to use any modules offering the Cache or Cache::Cache interfaces as the cache implementation. Data structures are automatically serialised/deserialised by the backend modules if they are being persisted somewhere other than in memory (e.g. on the filesystem).
devel/Cache-Cache-1.08 (Score: 9.2878623E-4)
Perl Cache interface
The Perl Cache package provides Cache::Cache, a generic interface for creating persistent data stores. This interface is implemented by the Cache::MemoryCache, Cache::SharedMemoryCache, Cache::FileCache, Cache::SizeAwareFileCache, Cache::SizeAwareMemoryCache, and Cache::SizeAwareSharedMemoryCache classes. This work replaces File::Cache and IPC::Cache. -Anton <tobez@FreeBSD.org>
devel/Cache-FastMmap-1.44 (Score: 9.2878623E-4)
Uses an mmap\'ed file to act as a shared memory interprocess cache
A shared memory cache through an mmap'ed file. It's core is written in C for performance. It uses fcntl locking to ensure multiple processes can safely access the cache at the same time. It uses a basic LRU algorithm to keep the most used entries in the cache.
devel/Cache-LRU-0.04 (Score: 9.2878623E-4)
Simple, fast implementation of an in-memory LRU cache
A simple, fast implementation of an in-memory LRU cache in pure perl with the maximum number of entries to be stored within the cache object.
devel/Cache-2.11 (Score: 9.2878623E-4)
Perl Cache interface
The Cache modules are designed to assist a developer in persisting data for a specified period of time. Often these modules are used in web applications to store data locally to save repeated and redundant expensive calls to remote machines or databases.
devel/Cairo-GObject-1.004 (Score: 9.2878623E-4)
Integrate Cairo into the Glib type system
Cairo::GObject registers Cairo's types (Cairo::Context, Cairo::Surface, etc.) with Glib's type systems so that they can be used normally in signals and properties.
devel/Callback-Frame-1.100 (Score: 9.2878623E-4)
Preserve error handlers and "local" variables across callbacks
When programming with callbacks in perl, you create anonymous functions with sub { ... }. These functions are especially useful because when they are called they will preserve their surrounding lexical environment. Sometimes people call these anonymous functions that reference variables in their surrounding lexical scope "closures". Whatever you call them, they are essential for convenient and efficient asynchronous programming. For many applications we really like straightforward callback style. The goal of Callback::Frame is to simplify the management of dynamic environments while leaving callback style alone.
devel/Capture-Tiny-0.28 (Score: 9.2878623E-4)
Capture STDOUT and STDERR from Perl, XS, or external programs
Capture::Tiny provides a simple, portable way to capture anything sent to STDOUT or STDERR, regardless of whether it comes from Perl, from XS code or from an external program. Optionally, output can be teed so that it is captured while being passed through to the original handles.
devel/Cache-Mmap-0.11 (Score: 9.2878623E-4)
Cache::Mmap - Shared data cache using memory mapped files
This module provides a shared cache, using a memory mapped file. Very useful for mod_perl applications. If routines are provided which interact with the underlying data, access to the cache is completely transparent, and the module handles all the details of refreshing cache contents, and updating underlying data, if necessary.