Skip to main content

Distribute lock system's client.

Project description

https://travis-ci.org/appstore-zencore/distlock-client.svg?branch=master https://img.shields.io/codecov/c/github/appstore-zencore/distlock-client.svg?style=flat-square

Distribute lock system’s client.

Install

pip install distlock-client

Usage

  1. Use Lock apis.

from distlock_client import Lock
from distlock_client import get_app_unique_name
from .services import do_something

def view01(request):
    lockName = "view01_lock"
    appid = get_app_unique_name()
    server = "http://127.0.0.1/"
    lock = Lock(appid, server)

    locked = lock.safe_acquire(lockName, 60)
    if locked:
        try:
            do_something()
        finally:
            lock.safe_release(lockName)
  1. Use with statement.

from distlock_client import Lock
from distlock_client import distlock
from distlock_client import get_app_unique_name
from .services import do_something

def view01(request):
    lockName = "view01_lock"
    appid = get_app_unique_name()
    server = "http://127.0.0.1/"
    lock = Lock(appid, server)
    with distlock(lock, lockName) as locked:
        if locked:
            do_something()

Misc

  1. Available servers.

  • django-distlock-server [python, django, database backend]

  • django-distlock-server-redis [python, django, redis backend]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

distlock-client-0.1.1.tar.gz (2.5 kB view details)

Uploaded Source

File details

Details for the file distlock-client-0.1.1.tar.gz.

File metadata

  • Download URL: distlock-client-0.1.1.tar.gz
  • Upload date:
  • Size: 2.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Python-urllib/3.7

File hashes

Hashes for distlock-client-0.1.1.tar.gz
Algorithm Hash digest
SHA256 545c5e80e7986c216f66d7b091b203692eab9b09a2488cd0b887a8a8a0ddae7a
MD5 150d76a852fa35cf8d621ebe9846ccb4
BLAKE2b-256 5b455f618cecba49d854d583d6c08f4072367fdf8d78ed3b781a2c2d7886571c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page