IO::Socket::UNIX - Object interface for AF_UNIX domain sockets

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket::UNIX - Object interface for AF_UNIX domain sockets SYNOPSIS use IO::Socket::UNIX; my $SOCK_PATH = "$ENV{HOME}/unix-domain-socket-test.sock"; # Server: my $server = IO::Socket::UNIX->new( Type => SOCK_STREAM(), Local => $SOCK_PATH, Listen => 1, ); my $count = 1; while (my $conn = $server->accept()) { $conn->print("Hello " . ($count++) . "\n"); } # Client: my $client =

Memoize::Expire - Plug-in module for automatic expiration of memoized values

NAME SYNOPSIS DESCRIPTION INTERFACE ALTERNATIVES CAVEATS AUTHOR SEE ALSO NAME Memoize::Expire - Plug-in module for automatic expiration of memoized values SYNOPSIS use Memoize; use Memoize::Expire; tie my %cache => 'Memoize::Expire', LIFETIME => $lifetime, # In seconds NUM_USES => $n_uses; memoize 'function', SCALAR_CACHE => [HASH => \%cache ]; DESCRIPTION Memoize::Expire is a plug-in module for Memoize. It allows the cached values for memoized functions to expir

Time::HiRes - High resolution alarm, sleep, gettimeofday, interval timers

NAME SYNOPSIS DESCRIPTION EXAMPLES C API DIAGNOSTICSuseconds or interval more than ... negative time not invented yet internal error: useconds < 0 (unsigned ... signed ...) useconds or uinterval equal to or more than 1000000 unimplemented in this platform CAVEATS SEE ALSO AUTHORS COPYRIGHT AND LICENSE NAME Time::HiRes - High resolution alarm, sleep, gettimeofday, interval timers SYNOPSIS use Time::HiRes qw( usleep ualarm gettimeofday tv_interval nanosleep clock_gettime clock_getres clo

AnyDBM_File - provide framework for multiple DBMs

NAME SYNOPSIS DESCRIPTIONDBM Comparisons SEE ALSO NAME AnyDBM_File - provide framework for multiple DBMs NDBM_File, DB_File, GDBM_File, SDBM_File, ODBM_File - various DBM implementations SYNOPSIS use AnyDBM_File; DESCRIPTION This module is a "pure virtual base class"--it has nothing of its own. It's just there to inherit from one of the various DBM packages. It prefers ndbm for compatibility reasons with Perl 4, then Berkeley DB (See DB_File), GDBM, SDBM (which is always there--it comes wit

$OSNAME

$OSNAME

Hash::Util::FieldHash - Support for Inside-Out Classes

NAME SYNOPSIS FUNCTIONS DESCRIPTIONThe Inside-out Technique Problems of Inside-out Solutions More Problems The Generic Object How to use Field Hashes Garbage-Collected Hashes EXAMPLESExample 1 Example 2 GUTSThe PERL_MAGIC_uvar interface for hashes Weakrefs call uvar magic How field hashes work Internal function Hash::Util::FieldHash::_fieldhash AUTHOR COPYRIGHT AND LICENSE NAME Hash::Util::FieldHash - Support for Inside-Out Classes SYNOPSIS ### Create fieldhashes use Hash::Util qw(field

${^RE_TRIE_MAXBUF}

${^RE_TRIE_MAXBUF} Controls how certain regex optimisations are applied and how much memory they utilize. This value by default is 65536 which corresponds to a 512kB temporary cache. Set this to a higher value to trade memory for speed when matching large alternations. Set it to a lower value if you want the optimisations to be as conservative of memory as possible but still occur, and set it to a negative value to prevent the optimisation and conserve the most memory. Under normal situations

IO::Socket - Object interface to socket communications

NAME SYNOPSIS DESCRIPTION CONSTRUCTOR METHODS LIMITATIONS SEE ALSO AUTHOR COPYRIGHT NAME IO::Socket - Object interface to socket communications SYNOPSIS use IO::Socket; DESCRIPTION IO::Socket provides an object interface to creating and using sockets. It is built upon the IO::Handle interface and inherits all the methods defined by IO::Handle. IO::Socket only defines methods for those operations which are common to all types of socket. Operations which are specified to a socket in a particul

MIME::QuotedPrint - Encoding and decoding of quoted-printable strings

NAME SYNOPSIS DESCRIPTION COPYRIGHT SEE ALSO NAME MIME::QuotedPrint - Encoding and decoding of quoted-printable strings SYNOPSIS use MIME::QuotedPrint; $encoded = encode_qp($decoded); $decoded = decode_qp($encoded); DESCRIPTION This module provides functions to encode and decode strings into and from the quoted-printable encoding specified in RFC 2045 - MIME (Multipurpose Internet Mail Extensions). The quoted-printable encoding is intended to represent data that largely consists of bytes th

Pod::Simple

SYNOPSIS DESCRIPTION MAIN METHODS SECONDARY METHODS TERTIARY METHODS ENCODING CAVEATS SEE ALSO SUPPORT COPYRIGHT AND DISCLAIMERS AUTHOR SYNOPSIS TODO DESCRIPTION Pod::Simple is a Perl library for parsing text in the Pod ("plain old documentation") markup language that is typically used for writing documentation for Perl and for Perl modules. The Pod format is explained perlpod; the most common formatter is called perldoc . Be sure to read ENCODING if your Pod contains non-ASCII characters. P