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

Comparing cvsroot/schmorpforge/genpage (file contents):
Revision 1.102 by root, Fri Apr 5 09:11:40 2013 UTC vs.
Revision 1.105 by root, Sun Apr 28 14:29:07 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>-->
501 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
502 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
503 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
504 processes. 505 processes.
505 506
506AnyEvent-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)
507 Everything you wanted to use fork() for, but couldn't. 508 Everything you wanted to use fork() for, but couldn't.
508 509
509 This module allows you to create new processes, without actually forking 510 This module allows you to create new processes, without actually forking
510 them from your current process (avoiding the problems of forking), but 511 them from your current process (avoiding the problems of forking), but
511 preserving most of the advantages of fork. 512 preserving most of the advantages of fork.
513 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
514 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
515 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
516 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
517 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.
518 557
519Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes) 558Guard cpan cvs-pod(Guard.pm,) cvs-co(Changes)
520 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
521 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).
522 561

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines