vote up 0 vote down star

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)

flag

3 Answers

vote up 2 vote down check

Hi, there's and example application from Blake Mizerany at Github: sinatra-dj, using DelayedJob as queing mechanism.

link|flag
thanks that's exactly what I was looking for, the sinatra-dj example is really straitforward – Gaetan Dubar May 15 at 11:15
vote up 1 vote down

What about trying:

exec('curl -0'+url) if fork == nil
link|flag
it doesn't seem to work but for a reason I don't quite understand, it works with Thread.new { exec('curl -O'+url) } – Gaetan Dubar May 15 at 11:08
vote up 0 vote down

Old question, but...

Use Spork

link|flag

Your Answer

Get an OpenID
or

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