fd368a706b
This avoids having Zookeeper or memcached running, which might not be the case. Change-Id: Ib66eb8348aece447ee2c8de084c4ac807b552907
12 lines
248 B
Python
12 lines
248 B
Python
from tooz import coordination
|
|
|
|
coordinator = coordination.get_coordinator('zake://', b'host-1')
|
|
coordinator.start()
|
|
|
|
# Create a lock
|
|
lock = coordinator.get_lock("foobar")
|
|
with lock:
|
|
print("Do something that is distributed")
|
|
|
|
coordinator.stop()
|