I'd like to run a basic asynchronous job
exec('curl -0 '+url)
from a sinatra app,
I've tried to do that with fork and detach but it seems bogus.
(I'm on windows)
I'd like to run a basic asynchronous job
exec('curl -0 '+url)
from a sinatra app,
I've tried to do that with fork and detach but it seems bogus.
(I'm on windows)
Hi, there's and example application from Blake Mizerany at Github: sinatra-dj, using DelayedJob as queing mechanism.