Created
August 21, 2011 04:48
-
-
Save ryandotsmith/1160138 to your computer and use it in GitHub Desktop.
2 different approaches to locking jobs in queue_classic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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