The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

Search results for "shared memory"

Cache::SharedMemoryCache - extends the MemoryCache. River stage three • 72 direct dependents • 388 total dependents

The SharedMemoryCache extends the MemoryCache class and binds the data store to shared memory so that separate process can use the same cache. The official recommendation is now to use FileCache instead of SharedMemoryCache. The reasons for this incl...

RJBS/Cache-Cache-1.08 - 22 Jan 2015 16:13:22 UTC - Search in distribution

MMapDB - a simple database in shared memory River stage one • 2 direct dependents • 2 total dependents

"MMapDB" implements a database similar to a hash of hashes of hashes, ..., of arrays of data. It's main design goals were: * very fast read access * lock-free read access for massive parallelism * minimal memory consumption per accessing process * tr...

OPI/MMapDB-0.15 - 10 Sep 2012 10:40:17 UTC - Search in distribution

IPC::MMA - Shared Memory using Ralf Engelschall's mm library River stage zero No dependents

IPC::MMA allows data to be shared among related Unix/Linux processes in a straightforward way. It provides methods to create and destroy shared memory segments and to create, access, and maintain data structures within segments. Perl scalars, arrays,...

MACKENNA/IPC-MMA-0.81 - 28 Feb 2010 06:09:19 UTC - Search in distribution

IPC::Shm - Easily store variables in SysV shared memory. River stage zero No dependents

KCODY/IPC-Shm-0.35 - 09 Jun 2014 00:45:15 UTC - Search in distribution

IPC::ShareLite - Lightweight interface to shared memory River stage three • 4 direct dependents • 396 total dependents

IPC::ShareLite provides a simple interface to shared memory, allowing data to be efficiently communicated between processes. Your operating system must support SysV IPC (shared memory and semaphores) in order to use this module. IPC::ShareLite provid...

ANDYA/IPC-ShareLite-0.17 - 11 Mar 2009 00:37:48 UTC - Search in distribution

Cache::Mmap - Shared data cache using memory mapped files River stage zero No dependents

This module implements a shared data cache, using memory mapped files. 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 content...

PMH/Cache-Mmap-0.11 - 15 Apr 2008 09:50:30 UTC - Search in distribution

SysV::SharedMem - SysV Shared memory made easy River stage zero No dependents

This module maps SysV shared memory into a variable that can be read just like any other variable, and it can be written to using standard Perl techniques such as regexps and "substr", as long as they don't change the length of the variable....

LEONT/SysV-SharedMem-0.011 - 12 Dec 2022 16:27:20 UTC - Search in distribution

String::Slice - Shared Memory Slices of Bigger Strings River stage one • 1 direct dependent • 1 total dependent

Processing large strings in Perl is inefficient because to access any smaller portion of a buffer you need to make a copy of that portion. Also finding substr offsets in large utf8 strings requires looping, since each character can have a varying len...

INGY/String-Slice-0.08 - 14 Feb 2015 05:06:12 UTC - Search in distribution

Nile::Var - Application Shared variables. River stage zero No dependents

Nile::Var - Application Shared variables....

MEWSOFT/Nile-0.55 - 14 Oct 2014 09:32:49 UTC - Search in distribution
  • Nile::Setting - Application global settings database table manager.

IPC::Shareable - Use shared memory backed variables across processes River stage two • 8 direct dependents • 11 total dependents

IPC::Shareable allows you to tie a variable to shared memory making it easy to share the contents of that variable with other Perl processes and scripts. Scalars, arrays, hashes and even objects can be tied. The variable being tied may contain arbitr...

STEVEB/IPC-Shareable-1.13 - 12 Oct 2022 00:11:02 UTC - Search in distribution

IPC::SharedMem - SysV Shared Memory IPC object class River stage two • 13 direct dependents • 39 total dependents

A class providing an object based interface to SysV IPC shared memory....

MHX/IPC-SysV-2.09 - 13 Nov 2020 17:02:18 UTC - Search in distribution
  • IPC::SysV - System V IPC constants and system calls

Thread::Shared - Utilities to help manage thread shared memory. River stage zero No dependents

Perl has a unique threading model, in that each thread gets a copy of all the data that was in the spawning interpretter --- it doesn't share memory with the other thread by default. This is more like using fork() than threading as used under most pr...

DSNOPEK/Xmldoom-0.0.16 - 08 Feb 2007 22:46:26 UTC - Search in distribution

P5NCI - Perl extension for loading shared libraries and their functions River stage zero No dependents

P5NCI provides a bare-bones, stripped down, procedural interface to shared libraries installed on your system. It allows you to call functions in them without writing or compiling any glue code. I recommend using P5NCI::Library as it has a nicer inte...

CHROMATIC/P5NCI-0.31 - 12 Dec 2007 01:57:26 UTC - Search in distribution

DBI - Database independent interface for Perl River stage four • 940 direct dependents • 2099 total dependents

The DBI is a database access module for the Perl programming language. It defines a set of methods, variables, and conventions that provide a consistent database interface, independent of the actual database being used. It is important to remember th...

TIMB/DBI-1.643 - 31 Jan 2020 19:02:41 UTC - Search in distribution

PDLdb.pl - the perl debugger with PDL support River stage three • 93 direct dependents • 101 total dependents

"PDLdb.pl" is an enhanced version of the perl debugger which supports PDL::NiceSlice constructs. Set the PERL5DB environment variable as shown above and it will be loaded automatically by Perl when you invoke a script with "perl -d". This documentati...

ETJ/PDL-2.088 - 21 Apr 2024 23:58:19 UTC - Search in distribution

Moo - Minimalist Object Orientation (with Moose compatibility) River stage four • 2117 direct dependents • 5269 total dependents

"Moo" is an extremely light-weight Object Orientation system. It allows one to concisely define objects and roles with a convenient syntax that avoids the details of Perl's object system. "Moo" contains a subset of Moose and is optimised for rapid st...

HAARG/Moo-2.005005 - 05 Jan 2023 20:56:38 UTC - Search in distribution

perl5db.pl - the perl debugger River stage five • 11292 direct dependents • 32664 total dependents

"perl5db.pl" is the perl debugger. It is loaded automatically by Perl when you invoke a script with "perl -d". This documentation tries to outline the structure and services provided by "perl5db.pl", and to describe how you can use them. See perldebu...

RJBS/perl-5.36.0 - 28 May 2022 00:26:10 UTC - Search in distribution

Fuse - write filesystems in Perl using FUSE River stage two • 14 direct dependents • 18 total dependents

This lets you implement filesystems in perl, through the FUSE (Filesystem in USErspace) kernel/lib interface. FUSE expects you to implement callbacks for the various functions. In the following definitions, "errno" can be 0 (for a success), -EINVAL, ...

DPATES/Fuse-0.16 - 16 Sep 2013 05:22:15 UTC - Search in distribution

Gimp - Write GIMP extensions/plug-ins/load- and save-handlers in Perl River stage zero No dependents

Gimp-Perl is a module for writing plug-ins, extensions, standalone scripts, and file-handlers for the GNU Image Manipulation Program (GIMP). It can be used to automate repetitive tasks, achieve a precision hard to get through manual use of GIMP, inte...

ETJ/Gimp-2.37 - 11 Jan 2022 09:16:23 UTC - Search in distribution

Tk::Text - Create and manipulate Text widgets River stage three • 160 direct dependents • 171 total dependents

The Text method creates a new window (given by the $text argument) and makes it into a text widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the text such as its defau...

SREZIC/Tk-804.036 - 14 Feb 2021 12:53:44 UTC - Search in distribution

Fsdb - a flat-text database for shell scripting River stage zero No dependents

JOHNH/Fsdb-3.4 - 06 Jan 2024 06:43:43 UTC - Search in distribution

libev - a high performance full-featured event loop written in C River stage two • 70 direct dependents • 86 total dependents

MLEHMANN/EV-4.34 - 08 Oct 2023 21:47:52 UTC - Search in distribution

TUWF - The Ultimate Website Framework River stage zero No dependents

TUWF is a small framework designed for writing websites. It provides an abstraction layer to various environment-specific tasks and has common functions to ease the creation of both small and large websites. For a gentle introduction to TUWF, see TUW...

YORHEL/TUWF-1.5 - 18 Jan 2023 08:23:51 UTC - Search in distribution

Input River stage three • 155 direct dependents • 183 total dependents

This chapter discusses mod_perl's input and output filter handlers. If all you need is to lookup the filtering API proceed directly to the "Apache2::Filter" and "Apache2::FilterRec" manpages....

SHAY/mod_perl-2.0.13 - 21 Oct 2023 10:32:29 UTC - Search in distribution

SMB - A humble SMB network protocol implementation in Perl River stage zero No dependents

SMB-Perl library is an implementation of SMB protocol, including simple SMB client and server functionality. SMB is a base class for many SMB::* classes. The following documents this super-class only. See corresponding sub-classes for their own descr...

MIGO/SMB-0.09 - 13 May 2018 16:06:23 UTC - Search in distribution

Future - represent an operation awaiting completion River stage three • 122 direct dependents • 298 total dependents

A "Future" object represents an operation that is currently in progress, or has recently completed. It can be used in a variety of ways to manage the flow of control, and data, through an asynchronous program. Some futures represent a single operatio...

PEVANS/Future-0.50 - 17 Mar 2023 17:09:37 UTC - Search in distribution

CHI - Unified cache handling interface River stage three • 97 direct dependents • 204 total dependents

CHI provides a unified caching API, designed to assist a developer in persisting data for a specified period of time. The CHI interface is implemented by driver classes that support fetching, storing and clearing of data. Driver classes exist or will...

ASB/CHI-0.61 - 13 Oct 2021 14:56:11 UTC - Search in distribution

AFS - Perl interface to AFS programming APIs River stage zero No dependents

The AFS module bundle is a dynamically loadable (where available) extension to Perl. It gives the AFS user and administrator access to most of the AFS programming APIs, allowing you to make these calls directly from Perl, rather than processing the o...

NOG/AFS-2.6.4 - 27 Oct 2014 13:11:37 UTC - Search in distribution

AnyData - (DEPRECATED) easy access to data in many formats River stage zero No dependents

The rather wacky idea behind this module and its sister module DBD::AnyData is that any data, regardless of source or format should be accessible and modifiable with the same simple set of methods. This module provides a multidimensional tied hash in...

REHSACK/AnyData-0.12 - 28 Jan 2015 20:26:22 UTC - Search in distribution

Coro - the only real threads in perl River stage two • 53 direct dependents • 69 total dependents

For a tutorial-style introduction, please read the Coro::Intro manpage. This manpage mainly contains reference information. This module collection manages continuations in general, most often in the form of cooperative threads (also called coros, or ...

MLEHMANN/Coro-6.57 - 29 Jul 2020 13:10:08 UTC - Search in distribution

Zing - Actor-Model Toolkit River stage one • 7 direct dependents • 7 total dependents

This distribution includes an actor-model architecture toolkit and multi-process management system which provides primatives for building resilient, reactive, concurrent, distributed message-driven applications in Perl 5. If you're unfamiliar with th...

AWNCORP/Zing-0.27 - 12 Feb 2021 17:41:40 UTC - Search in distribution

IO::All - IO::All to Larry Wall! River stage three • 134 direct dependents • 358 total dependents

IO::All combines all of the best Perl IO modules into a single nifty object oriented interface to greatly simplify your everyday Perl IO idioms. It exports a single function called "io", which returns a new IO::All object. And that object can do it a...

FREW/IO-All-0.87 - 18 Jul 2017 21:06:01 UTC - Search in distribution

Games::Object - Provide a base class for game objects River stage zero No dependents

Using Games::Object as a base class This is the optimal way to use Games::Object. You define a game object class of your own as a subclass of Games::Object. In your constructor, you create a Games::Object classed object first, then re-bless it into y...

PSTEWART/Games-Object-0.11 - 16 Oct 2003 05:03:53 UTC - Search in distribution

YAML - YAML Ain't Markup Language™ River stage four • 627 direct dependents • 2019 total dependents

The YAML.pm module implements a YAML Loader and Dumper based on the YAML 1.0 specification. <http://www.yaml.org/spec/> YAML is a generic data serialization language that is optimized for human readability. It can be used to express the data structur...

INGY/YAML-1.31 - 27 Dec 2023 15:11:23 UTC - Search in distribution

Slovo - Искони бѣ Слово River stage one • 1 direct dependent • 1 total dependent

Slovo is a simple to install and extensible Mojolicious CMS <https://en.wikipedia.org/wiki/Web_content_management_system> with nice core features, listed below. This is a usable release, yet full of creeping bugs and half-implemented pieces! The proj...

BEROV/Slovo-2023.03.22 - 22 Mar 2023 00:05:00 UTC - Search in distribution

perlfaq7 - General Perl Language Issues River stage zero No dependents

This section deals with general Perl language issues that don't clearly fit into any of the other sections. Can I get a BNF/yacc/RE for the Perl language? There is no BNF, but you can paw your way through the yacc grammar in perly.y in the source dis...

ETHER/perlfaq-5.20240218 - 18 Feb 2024 17:37:36 UTC - Search in distribution

CWB::CL - Perl interface to the low-level C API of the IMS Open Corpus Workbench River stage one • 2 direct dependents • 2 total dependents

This module provides an interface to the low-level Corpus Library for accessing CWB-indexed corpora. It follows the Corpus Library API closely, except for an object-oriented design with simplified method names and the addition of a few convenience me...

SCHTEPF/CWB-CL-v3.5.0 - 25 Jul 2022 15:56:24 UTC - Search in distribution

Embperl - Building dynamic Websites with Perl River stage one • 3 direct dependents • 3 total dependents

Embperl is a framework for building websites with Perl. For the beginner it's any easy to setup and use way of embedding Perl code in HTML pages. It delivers several features that ease the task of creating a websites, including dynamic tables, formfi...

GRICHTER/Embperl-3.0.0 - 24 Nov 2023 21:23:02 UTC - Search in distribution

Git::Hooks - Framework for implementing Git (and Gerrit) hooks River stage one • 5 direct dependents • 5 total dependents

GNUSTAVO/Git-Hooks-3.6.0 - 16 Nov 2023 13:59:30 UTC - Search in distribution

DBIx::Web - Active Web Database Layer River stage zero No dependents

This is a database layer for Perl scripts, implementing triggers, record versioning, access control at the record level, file attachments to records, materialised views. There is a web user interface also. Based on DBI and DB_File data engines. Based...

MAKAROW/DBIx-Web-0.80 - 30 Oct 2013 17:22:21 UTC - Search in distribution

App::Fetchware - App::Fetchware is Fetchware's API used to make extensions. River stage zero No dependents

App::Fetchware represents fetchware's API. For ducumentation on how to use App::Fetchware's fetchware command line interface see fetchware. It is the heart and soul of fetchware where all of fetchware's main behaviors are kept. It is fetchware's API,...

DLY/App-Fetchware-1.016 - 07 Oct 2016 04:23:59 UTC - Search in distribution

Log::Log4perl - Log4j implementation for Perl River stage four • 376 direct dependents • 1144 total dependents

Log::Log4perl lets you remote-control and fine-tune the logging behaviour of your system from the outside. It implements the widely popular (Java-based) Log4j logging package in pure Perl. For a detailed tutorial on Log::Log4perl usage, please read <...

ETJ/Log-Log4perl-1.57 - 21 Oct 2022 16:47:36 UTC - Search in distribution

Petal - Perl Template Attribute Language - TAL for Perl! River stage one • 7 direct dependents • 8 total dependents

NINE/Petal-2.26 - 20 May 2020 12:54:55 UTC - Search in distribution

Valiant - Object validation inspired by Ruby on Rails and more. River stage zero No dependents

Domain level validations for Moo or Moose classes and related capabilities such as attribute filtering and internationalization. Provides a domain specific language which allows you to defined for a given class what a valid state for an instance of t...

JJNAPIORK/Valiant-0.002003 - 04 Oct 2023 17:28:16 UTC - Search in distribution

Safe - Compile and execute code in restricted compartments River stage four • 31 direct dependents • 1949 total dependents

The Safe extension module allows the creation of compartments in which perl code can be evaluated. Each compartment has a new namespace The "root" of the namespace (i.e. "main::") is changed to a different package and code evaluated in the compartmen...

RGARCIA/Safe-2.35 - 21 Feb 2013 07:31:30 UTC - Search in distribution

XML::XQL - A perl module for querying XML tree structures with XQL River stage zero No dependents

The XML::XQL module implements the XQL (XML Query Language) proposal submitted to the XSL Working Group in September 1998. The spec can be found at: <http://www.w3.org/TandS/QL/QL98/pp/xql.html> Most of the contents related to the XQL syntax can also...

TJMATHER/XML-XQL-0.68 - 16 Jan 2003 21:59:00 UTC - Search in distribution

XML::XQL - A perl module for querying XML tree structures with XQL River stage zero No dependents

The XML::XQL module implements the XQL (XML Query Language) proposal submitted to the XSL Working Group in September 1998. The spec can be found at: <http://www.w3.org/TandS/QL/QL98/pp/xql.html> Most of the contents related to the XQL syntax can also...

ENNO/libxml-enno-1.02 - 27 Mar 2000 16:23:22 UTC - Search in distribution

GnuPG - Perl module interface to the GNU Privacy Guard (v1.x.x series) River stage one • 2 direct dependents • 2 total dependents

GnuPG is a perl interface to the GNU Privacy Guard. It uses the shared memory coprocess interface that gpg provides for its wrappers. It tries its best to map the interactive interface of the gpg to a more programmatic model....

YANICK/GnuPG-0.19 - 15 Apr 2012 17:18:51 UTC - Search in distribution

Control::CLI - Command Line Interface I/O over either Telnet or SSH (IPv4 & IPv6) or Serial port River stage one • 2 direct dependents • 2 total dependents

A Command Line Interface (CLI) is an interface where the user is presented with a command prompt and has to enter ASCII commands to drive or control or configure that device. That interface could be the shell on a unix system or some other command in...

LSTEVENS/Control-CLI-2.11 - 28 Aug 2022 18:55:55 UTC - Search in distribution

rperl River stage one • 3 direct dependents • 3 total dependents

RPerl is a compiler. For more info: <https://github.com/wbraswell/rperl/blob/master/README.md>...

WBRASWELL/RPerl-7.000000 - 05 Jul 2020 01:35:58 UTC - Search in distribution

ORLite - Extremely light weight SQLite-specific ORM River stage two • 10 direct dependents • 24 total dependents

SQLite is a light single file SQL database that provides an excellent platform for embedded storage of structured data. However, while it is superficially similar to a regular server-side SQL database, SQLite has some significant attributes that make...

ETHER/ORLite-2.00 - 19 Aug 2023 22:25:35 UTC - Search in distribution

Paws::KMS - Perl Interface to AWS AWS Key Management Service River stage two • 9 direct dependents • 11 total dependents

AWS Key Management Service AWS Key Management Service (AWS KMS) is an encryption and key management web service. This guide describes the AWS KMS operations that you can call programmatically. For general information about AWS KMS, see the *AWS Key M...

JROBINSON/Paws-0.46 - 20 Jan 2024 12:10:03 UTC - Search in distribution

Prima::Widget - window management River stage two • 17 direct dependents • 19 total dependents

Prima::Widget is a descendant of the Prima::Component class, that provides comprehensive management of system-dependent windows. Objects of the Prima::Widget class are mapped to the screen space as a rectangular area, with distinct boundaries, a poin...

KARASIK/Prima-1.72 - 31 Jan 2024 09:42:17 UTC - Search in distribution

DB_File - Perl5 access to Berkeley DB version 1.x River stage three • 55 direct dependents • 259 total dependents

DB_File is a module which allows Perl programs to make use of the facilities provided by Berkeley DB version 1.x (if you have a newer version of DB, see "Using DB_File with Berkeley DB version 2 or greater"). It is assumed that you have a copy of the...

PMQS/DB_File-1.859 - 21 Aug 2023 10:04:14 UTC - Search in distribution

Net::SSLeay - Perl bindings for OpenSSL and LibreSSL River stage four • 166 direct dependents • 2151 total dependents

This module provides Perl bindings for libssl (an SSL/TLS API) and libcrypto (a cryptography API)....

CHRISN/Net-SSLeay-1.94 - 08 Jan 2024 01:22:27 UTC - Search in distribution

PAR::FAQ - Frequently Asked Questions about PAR River stage two • 7 direct dependents • 14 total dependents

Where is the Windows binary version? You can find windows binaries here: <http://www.cpan.org/authors/id/S/SM/SMUELLER/> There are three ways to install them. Sorted in order of preference: cpan Run the *cpan* command line tool that comes with Perl. ...

RSCHUPP/PAR-1.020 - 04 Mar 2024 10:49:29 UTC - Search in distribution
  • PAR::Tutorial - Cross-Platform Packaging and Deployment with PAR

Patro - proxy access to remote objects River stage zero No dependents

"Patro" is a mechanism for making any Perl reference in one Perl program accessible is other processes, even processes running on different hosts. The "proxy" references have the same look and feel as the native references in the original process, an...

MOB/Patro-0.16 - 29 Sep 2017 02:17:12 UTC - Search in distribution
  • Patro::Archy - establish norms about exclusive access to references

Video::ZVBI - VBI decoding (teletext, closed caption, ...) River stage zero No dependents

This module provides a Perl interface to libzvbi. The ZVBI library allows to access broadcast data services such as teletext or closed caption via analog video or DVB capture devices. Official library description: "The ZVBI library provides routines ...

TOMZO/Video-ZVBI-1.1.1 - 31 May 2020 17:56:33 UTC - Search in distribution

B::C - Perl compiler's C backend River stage zero No dependents

This compiler backend takes Perl source and generates C source code corresponding to the internal structures that perl uses to run your program. When the generated C source is compiled and run, it cuts out the time which perl would have taken to load...

RURBAN/B-C-1.57 - 07 May 2019 12:10:41 UTC - Search in distribution
  • perloptree - The Perl op tree
  • perlcc - generate executables from Perl programs

MOSES::MOBY - Start here! Documentation for the Perl extension for the automatic generation of BioMOBY web services! River stage zero No dependents

This is the documentation for Perl MoSeS (Moby Services Support). If you are reading this from the "perldoc" utility, you may notice that some words are missing or that some phrases are incomplete. In order to view this documentation in the manner in...

EKAWAS/MOSES-MOBY-0.96.1 - 09 Dec 2010 14:23:28 UTC - Search in distribution

Math::MPFR - perl interface to the MPFR (floating point) library. River stage one • 5 direct dependents • 8 total dependents

A bigfloat module utilising the MPFR library. Basically this module simply wraps the 'mpfr' floating point functions provided by that library. Operator overloading is also available. The following documentation heavily plagiarises the mpfr documentat...

SISYPHUS/Math-MPFR-4.28 - 15 Jan 2024 03:42:02 UTC - Search in distribution

X11::Xlib - Low-level access to the X11 library River stage one • 3 direct dependents • 7 total dependents

This module provides low-level access to Xlib functions. This includes access to some X11 extensions like the X11 test library (Xtst). If you import the Xlib functions directly, or call them as methods on an instance of X11::Xlib, you get a near-C ex...

NERDVANA/X11-Xlib-0.25 - 21 Aug 2023 08:07:38 UTC - Search in distribution

Tie::REHash - the tie()d implementation of hash that allows using regular expression "keys" along with plain keys (plus some more). River stage zero No dependents

Tie::REHash is a tie()d implementation of hash that allows using regexp "keys" along with plain keys. Storing (assigning value to, deleting) regexp key in a hash tie()d to Tie::REHash is almost equivalent to storing (assigning value to, deleting) set...

METADOO/Tie-REHash-1.08 - 16 Aug 2017 10:18:48 UTC - Search in distribution

Lucy - Apache Lucy search engine library. River stage two • 13 direct dependents • 20 total dependents

The Apache Lucy search engine library delivers high-performance, modular full-text search. Features * Extremely fast. A single machine can handle millions of documents. * Scalable to multiple machines. * Incremental indexing (addition/deletion of doc...

NWELLNHOF/Lucy-0.6.2 - 27 Feb 2018 08:40:23 UTC - Search in distribution

Wombat - a Perl servlet container River stage zero No dependents

Wombat is a servlet container for Perl. It is not an executable program itself; rather, it is a library that can be used by programs to embed a servlet container. Embedding programs must provide implementations of Connector API classes that adapt Wom...

IX/Wombat-0.7.1 - 04 Nov 2001 16:29:33 UTC - Search in distribution

POE::Kernel - an event-based application kernel in Perl River stage three • 401 direct dependents • 538 total dependents

POE::Kernel is the heart of POE. It provides the lowest-level features: non-blocking multiplexed I/O, timers, and signal watchers are the most significant. Everything else is built upon this foundation. POE::Kernel is not an event loop in itself. For...

BINGOS/POE-1.370 - 23 Mar 2022 12:47:09 UTC - Search in distribution
  • POE::Loop - documentation for POE's event loop bridge interface
  • POE::Session - a generic event-driven task

starman - Starman launcher River stage two • 28 direct dependents • 41 total dependents

MIYAGAWA/Starman-0.4017 - 13 Sep 2023 20:27:57 UTC - Search in distribution

IO::AIO - Asynchronous/Advanced Input/Output River stage two • 13 direct dependents • 18 total dependents

This module implements asynchronous I/O using whatever means your operating system supports. It is implemented as an interface to "libeio" (<http://software.schmorp.de/pkg/libeio.html>). Asynchronous means that operations that can normally block your...

MLEHMANN/IO-AIO-4.81 - 20 Feb 2024 06:41:07 UTC - Search in distribution

Event::Lib - Perl extentions for event-based programming River stage one • 1 direct dependent • 1 total dependent

This module is a Perl wrapper around libevent(3) as available from <http://www.monkey.org/~provos/libevent/>. It allows to execute a function whenever a given event on a filehandle happens, a timeout occurs or a signal is received. Under the hood, on...

VPARSEVAL/Event-Lib-1.03 - 29 Jul 2007 11:39:08 UTC - Search in distribution

IPC::Shm::Simple - Simple data in SysV shared memory segments. River stage one • 1 direct dependent • 1 total dependent

KCODY/IPC-Shm-Simple-1.10 - 06 Jun 2014 21:44:05 UTC - Search in distribution

load - control when subroutines will be loaded River stage one • 8 direct dependents • 9 total dependents

The "load" pragma allows a module developer to give the application developer more options with regards to optimize for memory or CPU usage. The "load" pragma gives more control on the moment when subroutines are loaded and start taking up memory. Th...

LNATION/load-0.25 - 15 Apr 2021 13:06:00 UTC - Search in distribution

DBD::mysql - MySQL driver for the Perl5 Database Interface (DBI) River stage three • 96 direct dependents • 194 total dependents

DBD::mysql is the Perl5 Database Interface driver for the MySQL database. In other words: DBD::mysql is an interface between the Perl programming language and the MySQL programming API that comes with the MySQL relational database management system. ...

DVEEDEN/DBD-mysql-5.004 - 19 Mar 2024 08:16:14 UTC - Search in distribution

PSGI::FAQ - Frequently Asked Questions and answers River stage one • 5 direct dependents • 9 total dependents

MIYAGAWA/PSGI-1.102 - 24 Jul 2013 20:13:37 UTC - Search in distribution

DBD::MariaDB - MariaDB and MySQL driver for the Perl5 Database Interface (DBI) River stage zero No dependents

DBD::MariaDB is the Perl5 Database Interface driver for MariaDB and MySQL databases. In other words: DBD::MariaDB is an interface between the Perl programming language and the MariaDB/MySQL programming API that comes with the MariaDB/MySQL relational...

PALI/DBD-MariaDB-1.23 - 10 Sep 2023 14:27:09 UTC - Search in distribution

HTML::YaTmpl - Yet Another Template Processor River stage zero No dependents

"HTML::YaTmpl" follows the object oriented paradigm, i.e. you have to create a template processor prior to using it. A template processor is not bound to any particular template. You can use one processor to evaluate various templates. But other prop...

OPI/HTML-YaTmpl-1.8 - 12 Jan 2005 15:51:17 UTC - Search in distribution

List::Gen - provides functions for generating lists River stage one • 2 direct dependents • 2 total dependents

ASG/List-Gen-0.974 - 12 Nov 2011 05:03:05 UTC - Search in distribution

Mail::Box - manage a mailbox, a folder with messages River stage one • 8 direct dependents • 8 total dependents

A Mail::Box::Manager creates "Mail::Box" objects. But you already knew, because you started with the Mail::Box-Overview manual page. That page is obligatory reading, sorry! "Mail::Box" is the base class for accessing various types of mailboxes (folde...

MARKOV/Mail-Box-3.010 - 18 Jul 2023 07:26:47 UTC - Search in distribution

Embperl River stage zero No dependents

GRICHTER/HTML-Embperl-1.3.6 - 15 Feb 2003 19:33:11 UTC - Search in distribution

MQSeries - Perl extension for MQSeries support River stage one • 1 direct dependent • 1 total dependent

This module provides a perl language interface to MQSeries functions. It uses the standard MQSeries interface except where a perl convention is required or just more useful. Where data structures are required, this interface uses a hash reference. Th...

MQSERIES/MQSeries-1.34 - 13 Dec 2012 19:19:56 UTC - Search in distribution

Forks::Super - extensions and convenience methods to manage background processes River stage one • 1 direct dependent • 1 total dependent

This package provides new definitions for the Perl functions fork, wait, and waitpid with richer functionality. The new features are designed to make it more convenient to spawn background processes and more convenient to manage them to get the most ...

MOB/Forks-Super-0.97 - 09 Oct 2018 00:18:38 UTC - Search in distribution

SOOT - Use ROOT from Perl River stage one • 2 direct dependents • 2 total dependents

SOOT is a Perl extension for using the ROOT library. It is very similar to the Ruby-ROOT or PyROOT extensions for their respective languages. Specifically, SOOT was implemented after the model of Ruby-ROOT. Please note that SOOT is to be considered h...

SMUELLER/SOOT-0.17 - 25 Dec 2011 15:11:01 UTC - Search in distribution

Feersum - A PSGI engine for Perl based on EV/libev River stage one • 2 direct dependents • 2 total dependents

Feersum is an HTTP server built on EV. It fully supports the PSGI 1.03 spec including the "psgi.streaming" interface and is compatible with Plack. PSGI 1.1, which has yet to be published formally, is also supported. Feersum also has its own "native" ...

AUDREYT/Feersum-1.410 - 05 Dec 2020 06:48:03 UTC - Search in distribution

libeav - Email Address Validation Library River stage zero No dependents

libeav is a small library which allows applications to validate email addresses. An email address consists two parts separated by "@" symbol: local-part "@" domain. The local-part usually identifies a user and the domain is usually represents a Fully...

TVV/EAV-XS-0.7.8 - 08 Jul 2023 09:31:36 UTC - Search in distribution

Affix - A Foreign Function Interface eXtension River stage zero No dependents

Affix is an FFI <https://en.wikipedia.org/wiki/Foreign_function_interface> to wrap libraries developed in other languages (C, C++, Rust, etc.) with pure Perl; without XS!...

SANKO/Affix-0.11 - 30 Mar 2023 02:52:55 UTC - Search in distribution

Data::Stag - Structured Tags datastructures River stage one • 4 direct dependents • 8 total dependents

This module is for manipulating data as hierarchical tag/value pairs (Structured TAGs or Simple Tree AGgreggates). These datastructures can be represented as nested arrays, which have the advantage of being native to perl. A simple example is shown b...

CMUNGALL/Data-Stag-0.14 - 18 Sep 2013 05:33:02 UTC - Search in distribution

Path::Tiny - File path utility River stage four • 891 direct dependents • 7170 total dependents

This module provides a small, fast utility for working with file paths. It is friendlier to use than File::Spec and provides easy access to functions from several other core file handling modules. It aims to be smaller and faster than many alternativ...

DAGOLDEN/Path-Tiny-0.144 - 01 Dec 2022 16:37:45 UTC - Search in distribution

Playwright - Perl client for Playwright River stage zero No dependents

Perl interface to a lightweight node.js webserver that proxies commands runnable by Playwright. Checks and automatically installs a copy of the node dependencies in the local folder if needed. Currently understands commands you can send to all the pl...

TEODESIAN/Playwright-1.401 - 08 Feb 2024 19:26:25 UTC - Search in distribution

AnyEvent - the DBI of event loop programming River stage three • 409 direct dependents • 668 total dependents

AnyEvent provides a uniform interface to various event loops. This allows module authors to use event loop functionality without forcing module users to use a specific event loop implementation (since more than one event loop cannot coexist peacefull...

MLEHMANN/AnyEvent-7.17 - 18 Sep 2019 01:11:59 UTC - Search in distribution
  • AnyEvent::IO - the DBI of asynchronous I/O implementations

FFI::Util - Some useful pointer utilities when writing FFI modules (Deprecated) River stage one • 1 direct dependent • 1 total dependent

Note: This module has largely been obsoleted by FFI::Platypus, which I recommend that you use instead of this module. This module may be removed from CPAN at a future date, but not before 31 January 2017. This module provides some useful memory manip...

PLICEASE/FFI-Util-0.17 - 06 Jun 2018 13:24:13 UTC - Search in distribution

MCE::Core - Documentation describing the core MCE API River stage three • 21 direct dependents • 313 total dependents

MARIOROY/MCE-1.889 - 13 Sep 2023 23:37:02 UTC - Search in distribution
  • MCE::Child - A threads-like parallelization module compatible with Perl 5.8

pod::CONFIGURE_HOWTO River stage zero No dependents

LDS/GBrowse-2.56 - 15 Jan 2017 21:29:11 UTC - Search in distribution

CGI::Framework - A simple-to-use, lightweight web CGI framework River stage zero No dependents

CGI::Framework is a simple and lightweight framework for building web-based CGI applications. It features complete code-content separation (templating) by utilizing the HTML::Template library, stateful file or database-based sessions by utilizing the...

MNAGUIB/CGI-Framework-0.23 - 11 Oct 2005 16:23:36 UTC - Search in distribution

Math::Pari - Perl interface to PARI. River stage two • 4 direct dependents • 15 total dependents

This package is a Perl interface to famous library PARI for numerical/scientific/number-theoretic calculations. It allows use of most PARI functions as Perl functions, and (almost) seamless merging of PARI and Perl data. In what follows we suppose pr...

ILYAZ/Math-Pari-2.030523 - 12 Apr 2022 09:21:44 UTC - Search in distribution

pacmd - Compatability notes River stage zero No dependents

PulseAudio provides a CLI interface called pacmd. This lists the pacmd commands indexed by functionality. Because PulseAudio provides an object oriented interface to Pulse Audio, you needn't specify the index argument in any of these: these methods a...

ECARROLL/PulseAudio-0.07 - 22 Mar 2013 07:35:32 UTC - Search in distribution

OpenCL - Open Computing Language Bindings River stage zero No dependents

This is an early release which might be useful, but hasn't seen much testing. OpenCL FROM 10000 FEET HEIGHT Here is a high level overview of OpenCL: First you need to find one or more OpenCL::Platforms (kind of like vendors) - usually there is only o...

MLEHMANN/OpenCL-1.01 - 07 May 2012 01:02:04 UTC - Search in distribution

DBD::mSQL River stage zero No dependents

DBD::mysql and DBD::mSQL are the Perl5 Database Interface drivers for the mysql, mSQL 1.*x* and mSQL 2.*x* databases. The drivers are part of the *Msql-Mysql-modules* package. In other words: DBD::mSQL and DBD::mysql are an interface between the Perl...

JWIED/Msql-Mysql-modules-1.2219 - 31 Oct 2001 04:02:53 UTC - Search in distribution

Imager::Files - working with image files River stage three • 108 direct dependents • 121 total dependents

You can read and write a variety of images formats, assuming you have the appropriate libraries, and images can be read or written to/from files, file handles, file descriptors, scalars, or through callbacks. To see which image formats Imager is comp...

TONYC/Imager-1.024 - 06 Apr 2024 02:24:09 UTC - Search in distribution

makeppgraph - Graphical analysis of the dependency graph River stage zero No dependents

?: -?, A: -A, --args-file, --arguments-file, B: -b, --because, --build-reasons, C: &cwd, D: -D, -d, --dependencies, &dir, --dot, --down, --downwards, G: -g, --graphviz, H: -h, --help, &home, --html, I: -I, -i, --include, --include-dir, --includes, L:...

PFEIFFER/makepp-2.0.99.2 - 09 Nov 2017 09:32:03 UTC - Search in distribution
527 results (0.338 seconds)