vote up 2 vote down star
3

I need to scrape(using scrAPI) 400+ web pages ruby, my actual code is very sequential:

data = urls.map {|url| scraper.scrape url }

Actually the code is a bit different (exception handling and stuff).

How can I make it faster? How can I parallelize the downloads?

flag
Do you need to worry about hitting the server with too many requests at once? – Andrew Grimm Feb 18 at 6:19

2 Answers

vote up 0 vote down

This is pretty much an example used in the Pickaxe explanation of threading:

http://www.rubycentral.com/pickaxe/tut_threads.html

You should be able to adapt the Pickaxe code trivially to use your scraper.

link|flag
vote up 4 vote down
th = []
data = []
dlock = Mutex.new

urls.each do |url|
  th << Thread.new(url) do |url|
    d = scraper.scrape url
    dlock.synchronize { data << d }
  end
end

th.each { |t| t.join }

Tada! (Caution; written from memory, not tested, may eat your kitten, etc)

Edit: I figured someone must have written a generalised version of this, and so they have: http://peach.rubyforge.org/ -- enjoy!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.