up vote 0 down vote favorite
share [g+] share [fb]

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)

link|improve this question

feedback

3 Answers

up vote 2 down vote accepted

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

link|improve this answer
thanks that's exactly what I was looking for, the sinatra-dj example is really straitforward – Gaetan Dubar May 15 '09 at 11:15
feedback

What about trying:

exec('curl -0'+url) if fork == nil
link|improve this answer
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 '09 at 11:08
feedback

Old question, but...

Use Spork

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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