是否有Python等效的Ruby官员宝石?

时间:2012-08-22 18:08:45

标签: python ruby locking distributed-computing

是否有Python等同于Ruby的officer gem?它是一个分布式锁定服务器,基本上允许您通过网络而不是仅仅在线程之间进行锁定。

我一直在寻找具有Python库的elock,但是elock是未经许可的,因此我们无法真正将它用于商业软件(也或多或少被放弃)。

理想情况下,等效物将适合扭曲,但这不是必需的。

2 个答案:

答案 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)

如果您正在做的是非对称项目,请查看列表here。它有一个关于使用python进行集群计算的部分,最有希望的两个部分是celerypp。该页面还具有用于在一台计算机上的进程之间拆分任务的资源。它也可以用于对称项目,但我认为锁几乎必须由'服务器'拥有。