sometimes,you need to lock one or more table to ensure the integrity of data.may be it's help to you.
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
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
I think, that it would be better and shoter, to use try…finally block, like that:
#
Please login first before commenting.