ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/schmorpforge/genpage
(Generate patch)

Comparing cvsroot/schmorpforge/genpage (file contents):
Revision 1.101 by root, Thu Apr 4 07:55:54 2013 UTC vs.
Revision 1.106 by root, Sun Apr 28 14:29:31 2013 UTC

316lists all projects available here.</p> 316lists all projects available here.</p>
317</div> 317</div>
318 318
319<div class='section section-resources'> 319<div class='section section-resources'>
320<table class='resources'> 320<table class='resources'>
321<tr><td><tt class='icon'>BUGS</tt></td><td class='rr'>Do not use rt.cpan.org to report bugs, use an appropriate mailinglist or mail the author directly.</td></tr>
321<tr><td><tt class='icon'>CVS</tt></td><td class='rr'>All CVS modules can be browsed <a href="http://cvs.schmorp.de/">here</a></td></tr> 322<tr><td><tt class='icon'>CVS</tt></td><td class='rr'>All CVS modules can be browsed <a href="http://cvs.schmorp.de/">here</a></td></tr>
322<tr><td><tt class='icon'>GIT</tt></td><td class='rr'>All GIT repositories can be found <a href="http://git.ta-sa.org/">here</a></td></tr> 323<tr><td><tt class='icon'>GIT</tt></td><td class='rr'>All GIT repositories can be found <a href="http://git.ta-sa.org/">here</a></td></tr>
323<tr><td><tt class='icon'>FILE</tt></td><td class='rr'>Most file releases can be found <a href="http://dist.schmorp.de/">here</a> or on CPAN (for Perl modules)</td></tr> 324<tr><td><tt class='icon'>FILE</tt></td><td class='rr'>Most file releases can be found <a href="http://dist.schmorp.de/">here</a> or on CPAN (for Perl modules)</td></tr>
324<tr><td><tt class='icon'>LIST</tt></td><td class='rr'>All mailinglists can be found <a href="http://lists.schmorp.de/mailman/listinfo">here</a></td></tr> 325<tr><td><tt class='icon'>LIST</tt></td><td class='rr'>All mailinglists can be found <a href="http://lists.schmorp.de/mailman/listinfo">here</a></td></tr>
325<!--<tr><td><tt class='icon'>WIKI</tt></td><td class='rr'>The Wiki can be found <a href="http://wiki.schmorp.de/">here</a></td></tr>--> 326<!--<tr><td><tt class='icon'>WIKI</tt></td><td class='rr'>The Wiki can be found <a href="http://wiki.schmorp.de/">here</a></td></tr>-->
480 This is a small interface to Term::ReadLine::Gnu for event-based programs. 481 This is a small interface to Term::ReadLine::Gnu for event-based programs.
481 482
482 This module has event-based readline, as well as asynchronous message printing 483 This module has event-based readline, as well as asynchronous message printing
483 with readline figured out for you. 484 with readline figured out for you.
484 485
486IO-FDPass cpan cvs-pod(FDPass.pm,) cvs-co(Changes)
487 Pass a file descriptor over a socket.
488
489 This small low-level module only has one purpose: pass a file descriptor
490 to another process, using a (streaming) unix domain socket (on POSIX
491 systems) or any (streaming) socket (on WIN32 systems).
492
485Proc-FastSpawn cpan cvs-pod(FastSpawn.pm,) cvs-co(Changes) 493Proc-FastSpawn cpan cvs-pod(FastSpawn.pm,) cvs-co(Changes)
486 fork+exec, or spawn, a subprocess as quickly as possible 494 fork+exec, or spawn, a subprocess as quickly as possible
487 495
488 The purpose of this small (in scope and footprint) module is simple: 496 The purpose of this small (in scope and footprint) module is simple:
489 spawn a subprocess asynchronously as efficiently and/or fast as 497 spawn a subprocess asynchronously as efficiently and/or fast as
494 programs when otherwise you couldn't - for example, when you use POSIX 502 programs when otherwise you couldn't - for example, when you use POSIX
495 threads in your perl process then it generally isn't safe to call 503 threads in your perl process then it generally isn't safe to call
496 fork from perl, but it is safe to use this module to execute external 504 fork from perl, but it is safe to use this module to execute external
497 processes. 505 processes.
498 506
499AnyEvent-Fork cpan cvs-pod(Fork.pm,) cvs-pod(Fork/Early.pm) cvs-pod(Fork/Template) cvs-co(Changes) 507AnyEvent-Fork cpan cvs-pod(Fork.pm,) cvs-pod(Fork/Early.pm) cvs-pod(Fork/Template.pm) cvs-co(Changes) list(anyevent) irc(anyevent)
500 Everything you wanted to use fork() for, but couldn't. 508 Everything you wanted to use fork() for, but couldn't.
501 509
502 This module allows you to create new processes, without actually forking 510 This module allows you to create new processes, without actually forking
503 them from your current process (avoiding the problems of forking), but 511 them from your current process (avoiding the problems of forking), but
504 preserving most of the advantages of fork. 512 preserving most of the advantages of fork.
506 It can be used to create new worker processes or new independent 514 It can be used to create new worker processes or new independent
507 subprocesses for short- and long-running jobs, process pools (e.g. for 515 subprocesses for short- and long-running jobs, process pools (e.g. for
508 use in pre-forked servers) but also to spawn new external processes (such 516 use in pre-forked servers) but also to spawn new external processes (such
509 as CGI scripts from a webserver), which can be faster (and more well 517 as CGI scripts from a webserver), which can be faster (and more well
510 behaved) than using fork+exec in big processes. 518 behaved) than using fork+exec in big processes.
519
520AnyEvent-Fork-Remote cpan cvs-pod(Remote.pm,) cvs-co(Changes) list(anyevent) irc(anyevent)
521 remote processes with AnyEvent::Fork interface
522
523 Despite what the name of this module might suggest, it doesn't actually
524 create remote processes for you. But it does make it easy to use them,
525 once you have started them.
526
527 This module implements a very similar API as AnyEvent::Fork. In fact,
528 similar enough to require at most minor modifications to support both
529 at the same time. For example, it works with AnyEvent::Fork::RPC and
530 AnyEvent::Fork::Pool.
531
532AnyEvent-Fork-RPC cpan cvs-pod(RPC.pm,) cvs-co(Changes) list(anyevent) irc(anyevent)
533 Simple RPC extension for AnyEvent::Fork
534
535 This module implements a simple RPC protocol and backend for processes
536 created via AnyEvent::Fork, allowing you to call a function in the
537 child process and receive its return values (up to 4GB serialised).
538
539 It implements two different backends: a synchronous one that works like a
540 normal function call, and an asynchronous one that can run multiple jobs
541 concurrently in the child, using AnyEvent.
542
543 It also implements an asynchronous event mechanism from the child to the
544 parent, that could be used for progress indications or other information.
545
546AnyEvent-Fork-Pool cpan cvs-pod(Pool.pm,) cvs-co(Changes) list(anyevent) irc(anyevent)
547 Simple process pool manager on top of AnyEvent::Fork and AnyEvent::Fork::RPC.
548
549 This module uses processes created via AnyEvent::Fork and the RPC
550 protocol implement in AnyEvent::Fork::RPC to create a load-balanced pool
551 of processes that handles jobs.
552
553 Understanding of AnyEvent::Fork is helpful but not critical to be able
554 to use this module, but a thorough understanding of AnyEvent::Fork::RPC
555 is, as it defines the actual API that needs to be implemented in the
556 children.
511 557
512Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes) 558Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes)
513 This small module implements scope and object guards, that is, code blocks 559 This small module implements scope and object guards, that is, code blocks
514 that are executed when a scope is being exited (or an object is destroyed). 560 that are executed when a scope is being exited (or an object is destroyed).
515 561

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines