summaryrefslogtreecommitdiff
path: root/redis/lock.py
Commit message (Expand)AuthorAgeFilesLines
* raise a LockError when the context manager fails to acquire a lockv3-breaking-changesAndy McCurdy2018-11-141-2/+3
* only support LuaLock going forwardAndy McCurdy2018-11-141-92/+50
* Use unicode literals throughout projectJon Dufresne2018-11-031-2/+1
* "while 1" --> "while True"Jeff Widman2018-10-111-1/+1
* Removing do_acquire from lualock as there is no gain over default do_acquireRobert Kopaczewski2014-12-111-24/+0
* Fix lua lockingRobert Kopaczewski2014-12-101-8/+4
* Atomic redis.set when acquiring a lockRobert Kopaczewski2014-12-101-9/+15
* Lock.acquire() to respect blocking_timeout argumentGrant Cox2014-06-191-2/+2
* more info on thread local storageAndy McCurdy2014-06-161-4/+25
* restore default Lock token storage, add toggle to make it thread-localwil paredes2014-06-061-2/+9
* move Lock.token attribute into thread-local storagewil paredes2014-06-051-8/+10
* Lock.release(): reorder code to avoid token overwritewil paredes2014-06-051-9/+7
* add a lock implementation using Lua scripts.Andy McCurdy2014-06-011-8/+94
* updated Lock class:Andy McCurdy2014-06-011-0/+158