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 27 | def require_lock(*tables):
def _lock(func):
def _do_lock(*args,**kws):
#lock tables
cursor = connection.cursor()
cursor.execute("LOCK TABLES %s WRITE" %' '.join(tables))
try:
result = func(*args,**kws)
except Exception,e:
raise Exception(e)
else:
return result
finally:
#unlock tables
cursor.execute("UNLOCK TABLES")
if cursor:cursor.close()
return _do_lock
return _lock
'''
example:
@require_lock(table_A,table_B)
fuc(args):
pass
'''
|
More like this
- Locking tables by miohtama 4 years, 10 months ago
- Model Locking Mixin & Decorator (MySQL Advisory Locks) by pio 2 years ago
- Creating MySQL Alter table commands for Foreign Keys by vidyanand 4 years, 11 months ago
- Safer cache key generation by cmheisel 4 years, 5 months ago
- Django Row Level Locking (Prevents race conditions if used correctly) by sleepycal 2 years, 11 months ago
Comments
I think, that it would be better and shoter, to use try…finally block, like that:
#