是否有Python等同于Ruby的officer gem?它是一个分布式锁定服务器,基本上允许您通过网络而不是仅仅在线程之间进行锁定。
我一直在寻找具有Python库的elock,但是elock是未经许可的,因此我们无法真正将它用于商业软件(也或多或少被放弃)。
理想情况下,等效物将适合扭曲,但这不是必需的。
答案 0 :(得分:1)
我最终使用memcached来解决这个问题,因为它有原子更新。
解决方案非常简单:
import memcache
mc = memcache.Client(hosts, debug=1)
# to lock:
def request_lock(key, timeout=300):
if mc == None:
raise Exception("Memcache is not connected!")
# just store a "1" in that location - this is an atomic operation so if two
# nodes request a lock at the same time, only one of them will get a True
return mc.add(key, "1", timeout)
# to unlock:
def request_unlock(key):
if mc == None:
raise Exception("Memcache is not connected!")
return mc.delete(key) > 0
答案 1 :(得分:0)