Skip to content

Instantly share code, notes, and snippets.

@tomoyoirl
tomoyoirl / gist:1996553
Created March 7, 2012 22:06 — forked from buhrmi/gist:801746
Pessimistic Locking Strategy support for DataMapper (FOR UPDATE)
# This Patch makes it possible to retrieve row-locked records from data-objects repositories
# Sample Usage: User.locked.get(1)
# #=> SELECT [...] WHERE `id` = 1 ORDER BY `id` LIMIT 1 FOR UPDATE
# In user.rb
def self.locked
all(:with_locking => true)
end
# The actual patch