Skip to content

Instantly share code, notes, and snippets.

@ryandotsmith
Created August 21, 2011 04:48
Show Gist options
  • Save ryandotsmith/1160138 to your computer and use it in GitHub Desktop.
Save ryandotsmith/1160138 to your computer and use it in GitHub Desktop.
2 different approaches to locking jobs in queue_classic
def lock_job
attempts = 0
job = nil
until job
job = @queue.dequeue
if job.nil?
attempts += 1
if attempts < MAX_LOCK_ATTEMPTS
sleep(2**attempts)
next
else
break
end
end
end
job
end
def lock_job
job = nil
until job
if job = @queue.dequeue
@queue.database.unlisten
else
@queue.database.listen
@queue.database.wait_for_notify
end
end
job
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment