Created
April 21, 2009 14:00
-
-
Save mwmitchell/99154 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# rails action | |
def in_bg | |
pid = fork { | |
10.times do |i| | |
puts "WAITING .... #{i}" | |
sleep 1.0 | |
end | |
} | |
Process.detach(pid) | |
render :text=>pid.to_s | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment