Skip to content

Instantly share code, notes, and snippets.

@moonpolysoft
Created September 23, 2008 21:08
Show Gist options
  • Save moonpolysoft/12413 to your computer and use it in GitHub Desktop.
Save moonpolysoft/12413 to your computer and use it in GitHub Desktop.
WORKERS=16
$pids = []
while $pids.length >= WORKERS
exited = Process.wait
$pids.delete exited
end
$pids << fork do
yield
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment