High-performance distributed sync service and atomic DB. Provides good multi-core support through lock queues, high-performance asynchronous binary network protocols. Can be used for spikes, synchronization, event notification, concurrency control. https://github.com/snower/slock
pip install pyslockimportredisimportpyslockslock_client=pyslock.Client("localhost")
event=slock_client.Event("test", 5, 120, False)
event.set()importasyncioimportpyslockasyncdefrun():
slock_client=pyslock.AsyncClient("localhost")
event=slock_client.Event("test", 5, 120, False)
awaitevent.set()
loop=asyncio.get_event_loop()
loop.run_until_complete(run())slock uses the MIT license, see LICENSE file for the details.