Skip to content

Instantly share code, notes, and snippets.

View jubishop's full-sized avatar
💭
Vibing

Justin Bishop jubishop

💭
Vibing
View GitHub Profile
@ChengLong
ChengLong / run_long_process_in_background.rb
Last active April 19, 2021 20:59
Run Background Process in Sinatra
require 'sinatra'
get '/long_process' do
child_pid = Process.fork do
# hard work is done here...
sleep 10
Process.exit
end