Skip to content

Commit 552a826

Browse files
committed
Update README.md
Updated spacing on code
1 parent b03ff17 commit 552a826

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

README.md

+20-20
Original file line numberDiff line numberDiff line change
@@ -12,34 +12,34 @@ If your application does not need a high performance mutex lock, Django DB Mutex
1212
## How to Use Django DB Mutex
1313
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:
1414

15-
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
15+
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
1616

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'
2626

2727
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.
2828

2929
The db_mutex decorator can also be used in a similar manner for locking a function.
3030

31-
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
31+
from db_mutex import db_mutex, DBMutexError, DBMutexTimeoutError
3232

33-
@db_mutex('lock_id')
34-
def critical_function():
35-
pass
33+
@db_mutex('lock_id')
34+
def critical_function():
35+
pass
3636

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'
4343

4444
## Lock Timeout
4545
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

Comments
 (0)