[Catalyst-commits] r13800 - trunk/examples/CatalystAdvent/root/2010/pen

dhoss at dev.catalyst.perl.org dhoss at dev.catalyst.perl.org
Tue Dec 7 23:01:46 GMT 2010


Author: dhoss
Date: 2010-12-07 23:01:46 +0000 (Tue, 07 Dec 2010)
New Revision: 13800

Modified:
   trunk/examples/CatalystAdvent/root/2010/pen/catalyst-and-gearman.pod
Log:
more work on gearman

Modified: trunk/examples/CatalystAdvent/root/2010/pen/catalyst-and-gearman.pod
===================================================================
--- trunk/examples/CatalystAdvent/root/2010/pen/catalyst-and-gearman.pod	2010-12-07 03:51:57 UTC (rev 13799)
+++ trunk/examples/CatalystAdvent/root/2010/pen/catalyst-and-gearman.pod	2010-12-07 23:01:46 UTC (rev 13800)
@@ -1,4 +1,23 @@
 =head1 Using Gearman with Catalyst to Create a Simple Image Thumbnailer
 
+=head2 SYNOPSIS
 
+L<Gearman> is a distributed job queue system that excels in doing things quickly, and asynchronously run job processes for things that need batch processesing, or those which you don't want your web application having to deal with.  It's quick, and good for things like thumbnailing, which we will be talking about today.
+
+=head2 REQUIREMENTS
+
+=over 12
+
+=item L<Gearman::Server> 
+
+This is the actual job server that keeps track of jobs, and what the worker processes connect to. Initialized with C<gearmand>.
+
+=item L<Gearman::Worker>
+
+This is your worker instance, which actually does the job you want done.  HINT:  We want to do thumbnailing, so this will contain the code for creating thumbnails from images.
+
+=item L<Catalyst>
+
+Duh.
+
 =cut




More information about the Catalyst-commits mailing list