ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> ruby-talk
ruby-talk
[ANN] threadify-0.0.1
by Ara Howard other posts by this author
Jul 1 2008 1:07PM messages near this date
Re: Problem with unpack | Re: threadify-0.0.1
this one's for you charlie ;-)






NAME
   threadify.rb


SYNOPSIS
   enumerable = %w( a b c d )
   enumerable.threadify(2){ 'process this block using two worker  
threads' }

DESCRIPTION
   threadify.rb makes it stupid easy to process a bunch of data using  
'n'
   worker threads

INSTALL
   gem install threadify

URI
   http://rubyforge.org/projects/codeforpeople

SAMPLES

   <========< sample/a.rb > ========>

   ~ >  cat sample/a.rb

     require 'open-uri'
     require 'yaml'

     require 'rubygems'
     require 'threadify'


     uris =
       %w(
         http://google.com
         http://yahoo.com
         http://rubyforge.org
         http://ruby-lang.org
         http://kcrw.org
         http://drawohara.com
         http://codeforpeople.com
       )


     time 'without threadify' do
       uris.each do |uri|
         body = open(uri){|pipe| pipe.read}
       end
     end


     time 'with threadify' do
       uris.threadify do |uri|
         body = open(uri){|pipe| pipe.read}
       end
     end


     BEGIN {
       def time label
         a = Time.now.to_f
         yield
       ensure
         b = Time.now.to_f
         y label =>  (b - a)
       end
     }

   ~ >  ruby sample/a.rb

     ---
     without threadify: 7.41900205612183
     ---
     with threadify: 3.69886112213135




a @ http://codeforpeople.com/
--
we can deny everything, except that we have the possibility of being  
better. simply reflect on that.
h.h. the 14th dalai lama
Thread:
Ara Howard
Daniel Berger
Ara.T.Howard
Charles Oliver Nutter
Michael Guterl
Charles Oliver Nutter
Michael Guterl
Ara.T.Howard
Charles Oliver Nutter
Charles Oliver Nutter
Ara.T.Howard
Ara.T.Howard
Ara.T.Howard
Charles Oliver Nutter
Martin DeMello
Charles Oliver Nutter
Martin DeMello
Ara.T.Howard
Fedzor

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved