The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

Search results for "Coro::*"

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

Coro::MP - erlang-style multi-processing/message-passing framework River stage zero No dependents

This module (-family) implements a simple message passing framework. Despite its simplicity, you can securely message other processes running on the same or other hosts, and you can supervise entities remotely. This module depends heavily on AnyEvent...

MLEHMANN/Coro-MP-0.1 - 06 Oct 2009 01:41:06 UTC - Search in distribution

Coro::Mysql - let other threads run while doing mysql/mariadb requests River stage zero No dependents

(Note that in this manual, "thread" refers to real threads as implemented by the Coro module, not to the built-in windows process emulation which unfortunately is also called "threads"). This module replaces the I/O handlers for a database connection...

MLEHMANN/Coro-Mysql-2.1 - 04 Mar 2019 11:41:29 UTC - Search in distribution

FurlX::Coro - Multiple HTTP requests with Coro River stage zero No dependents

This is a wrapper to "Furl" for asynchronous HTTP requests with "Coro"....

GFUJI/FurlX-Coro-1.02 - 13 Apr 2013 05:03:09 UTC - Search in distribution

Coro::Twiggy - Coro interface for Twiggy River stage zero No dependents

The server starts Your application in "async" in Coro coroutine and uses its return value to respond to client. Application have to return an ARRAYREF with the following items: * HTTP-code; * an ARRAYREF that contains headers for response; * an ARRAY...

UNERA/Coro-Twiggy-0.03 - 14 Jul 2012 06:33:02 UTC - Search in distribution

Coro::DataPipe - parallel data processing conveyor River stage zero No dependents

This is implementation of Parallel::DataPipe algorithm using cooperative threads (Coro). See description of alorithm and subroutines there. This module uses cooperative threads, so all threads share the same memory and no forks are used. Good use cas...

OKHARCH/Coro-DataPipe-0.02 - 31 May 2013 09:07:57 UTC - Search in distribution

Coro::Localize - Localize variables to a coroutine River stage zero No dependents

This provides a new keyword, "corolocal" that works will localize a variable to a particular coroutine. This allows you to have thread-local values for global variables. It can localize scalars, arrays and hashes....

WINTER/Coro-Localize-0.1.2 - 09 Jul 2012 05:23:06 UTC - Search in distribution

Coro::PatchSet - fix Coro as much as possible River stage one • 1 direct dependent • 4 total dependents

This distribution contains set of submodules each of which patches some known bugs from submodule with the same name from Coro distribution. Read documentation for each submodule to know which bugs it will fix for you. Use this module as first exampl...

OLEG/Coro-PatchSet-0.13 - 10 Mar 2016 09:11:50 UTC - Search in distribution

Coro::Countdown - a counter that signals when it reaches 0 River stage zero No dependents

Oftentimes it is necessary to wait until all users of a resource have completed before a program may continue. Examples of this include a pool of pending network requests, etc. A countdown signal will broadcast to any waiters once all "checked out" r...

JEFFOBER/Coro-Countdown-0.02 - 08 Nov 2017 21:31:10 UTC - Search in distribution

Coro::Generator - Create generators using Coro River stage zero No dependents

In the words of wikipedia, generators look like functions but act like iterators. EXPORT generator, yield...

AWWAIID/Coro-Generator-0.02 - 16 Apr 2009 23:17:04 UTC - Search in distribution

Coro::Multicore - make coro threads on multiple cores with specially supported modules River stage zero No dependents

While Coro threads (unlike ithreads) provide real threads similar to pthreads, python threads and so on, they do not run in parallel to each other even on machines with multiple CPUs or multiple CPU cores. This module lifts this restriction under two...

MLEHMANN/Coro-Multicore-1.07 - 03 Aug 2021 14:15:41 UTC - Search in distribution

Coro::LocalScalar - local() for Coro River stage zero No dependents

NYAKNYAN/Coro-LocalScalar-0.21 - 06 Oct 2012 09:33:07 UTC - Search in distribution

Coro::PrioChannel - Priority message queues for Coro River stage zero No dependents

A Coro::PrioChannel is exactly like Coro::Channel, but with priorities. The priorities are the same as for Coro itself. Unlike Coro::Channel, you do have to load this module directly....

DMCBRIDE/Coro-PrioChannel-0.005 - 26 Mar 2013 14:33:04 UTC - Search in distribution

Coro::ProcessPool - An asynchronous pool of perl processes River stage zero No dependents

Processes tasks using a pool of external Perl processes....

JEFFOBER/Coro-ProcessPool-0.30 - 14 Nov 2017 03:00:05 UTC - Search in distribution

Coro::PriorityQueue River stage zero No dependents

Priority queues automatically order their contents according to the inserted item's priority. Calling code must ensure that their queue items are comparable via this strategy (e.g. by overloading the <=> operator). Underneath, this is implemented as ...

JEFFOBER/Coro-PriorityQueue-1.1 - 17 Dec 2013 16:08:34 UTC - Search in distribution

Acme::Coro::Suke - the only real corosuke in benzo River stage zero No dependents

This module emulate to corosuke x benzo....

CHIBA/Acme-Coro-Suke-0.01 - 12 Oct 2009 06:27:46 UTC - Search in distribution

SDLx::Coro::REPL - A REPL for your SDL River stage zero No dependents

AWWAIID/SDLx-Coro-REPL-0.03 - 09 Oct 2010 18:26:56 UTC - Search in distribution

Net::Server::Coro - A co-operative multithreaded server using Coro River stage one • 2 direct dependents • 2 total dependents

Net::Server::Coro implements multithreaded server for the Net::Server architecture, using Coro and Coro::Socket to make all reads and writes non-blocking. Additionally, it supports non-blocking SSL negotiation....

ALEXMV/Net-Server-Coro-1.3 - 12 Nov 2012 08:14:39 UTC - Search in distribution

Plack::Server::Coro - Coro cooperative multithread web server River stage zero No dependents

This is a Coro based Plack web server. It uses Net::Server::Coro under the hood, which means we have coroutines (threads) for each socket, active connections and a main loop. Because it's Coro based your web application can actually block with I/O wa...

MIYAGAWA/Plack-Server-Coro-0.02 - 24 Oct 2009 08:28:29 UTC - Search in distribution

AnyEvent::Retry::Coro - AnyEvent::Retry for jobs that run in separate threads River stage zero No dependents

This module makes AnyEvent::Retry work nicely with Coro. You don't need to provide success or failure callbacks anymore, and your task to retry just needs "die" or return a result....

JROCKWAY/AnyEvent-Retry-0.03 - 07 Nov 2010 06:16:13 UTC - Search in distribution
145 results (0.151 seconds)