tobi / locking

Global named locks (req. mysql) -- Extraction from Shopify

This URL has Read+Write access

locking / README
100644 26 lines (16 sloc) 0.989 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
Locking
=======
 
Very simple plugin which adds the acquire_lock method to active record base. This is mysql only.
 
As long as a lock of a certain name is acquired no other connection on the server is able to acquire the same lock.
This is very useful for background tasks such as billing or search server re-indexing which would cause errors when they
would be ran from multiple machines at the same time but you still want to run them from multiple machines at the same time
for redundancy reasons.
 
Example
=======
                                                                                                                              
Invoice.acquire_lock("Shopify billing") do
 
  Invoice.find_all_due.each { |invoice| invoice.collect_payment! }
  
end
 
 
Usecase
=======
                    
# save to run on several machines at the same time:
 
 ./script/runner 'Invoice.acquire_lock("Shopify billing") { Invoice.find_all_due.each { |invoice| invoice.collect_payment! } }'