simple-redis-lock

A simple redis lock.


License
MIT
Install
pip install simple-redis-lock==0.1.2

Documentation

A simple redis lock.

Installation

pip install simple-redis-lock

Usage

from simple_redis_lock import get_simple_lock
import your_redis_client

with get_imple_lock(your_redis_client, 'my_lock_name', ex=30) as lock:
    if lock:
        print('get the lock, and do something, finish release the lock')
    else:
        print('do not get lock, return')