You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+20-20
Original file line number
Diff line number
Diff line change
@@ -12,34 +12,34 @@ If your application does not need a high performance mutex lock, Django DB Mutex
12
12
## How to Use Django DB Mutex
13
13
The Django DB Mutex app provides a context manager and function decorator for locking a critical section of code. The context manager is used in the following way:
14
14
15
-
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
15
+
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
16
16
17
-
# Lock a critical section of code
18
-
try:
19
-
with db_mutex('lock_id'):
20
-
# Run critical code here
21
-
pass
22
-
except DBMutexError:
23
-
print 'Could not obtain lock'
24
-
except DBMutexTimeoutError:
25
-
print 'Task completed but the lock timed out'
17
+
# Lock a critical section of code
18
+
try:
19
+
with db_mutex('lock_id'):
20
+
# Run critical code here
21
+
pass
22
+
except DBMutexError:
23
+
print 'Could not obtain lock'
24
+
except DBMutexTimeoutError:
25
+
print 'Task completed but the lock timed out'
26
26
27
27
You'll notice that two errors were caught from this context manager. The first one, DBMutexError, is thrown if the lock cannot be acquired. The second one, DBMutexTimeoutError, is thrown if the critical code completes but the lock timed out. More about lock timeout in the next section.
28
28
29
29
The db_mutex decorator can also be used in a similar manner for locking a function.
30
30
31
-
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
31
+
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
32
32
33
-
@db_mutex('lock_id')
34
-
def critical_function():
35
-
pass
33
+
@db_mutex('lock_id')
34
+
def critical_function():
35
+
pass
36
36
37
-
try:
38
-
critical_function()
39
-
except DBMutexError:
40
-
print 'Could not obtain lock'
41
-
except DBMutexTimeoutError:
42
-
print 'Task completed but the lock timed out'
37
+
try:
38
+
critical_function()
39
+
except DBMutexError:
40
+
print 'Could not obtain lock'
41
+
except DBMutexTimeoutError:
42
+
print 'Task completed but the lock timed out'
43
43
44
44
## Lock Timeout
45
45
Django DB Mutex comes with lock timeout baked in. This ensures that a lock cannot be held forever. This is especially important when working with segments of code that may run out of memory or produce errors that do not raise exceptions.
0 commit comments