Skip to main content

A combined process and thread lock

Project description

Combo Lock

The combo-lock is a combination of a process lock and a thread lock. Usable in cases both multiple threads and multiple processes are sharing the same resource such as a file in the file system.

The module utilizes the FileLock from filelock and the standard Lock from threading.

The FileLock uses a filesystem lock so the initialization of the class requires a path for the lock file.

Example

from combo_lock import ComboLock

lock = ComboLock('/tmp/my.lock')

with lock:
    write_my_shared_resource()

A NamedLock will save the lock file to shared memory using memory-tempfile

from combo_lock import NamedLock

lock = NamedLock('some_name')

with lock:
    write_my_shared_resource()

History

The combo-lock was originally created for Mycroft-core but as it's been useful in other projects a separate release seemed appropriate.

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

combo_lock-0.3.1.tar.gz (9.1 kB view details)

Uploaded Source

File details

Details for the file combo_lock-0.3.1.tar.gz.

File metadata

  • Download URL: combo_lock-0.3.1.tar.gz
  • Upload date:
  • Size: 9.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.3

File hashes

Hashes for combo_lock-0.3.1.tar.gz
Algorithm Hash digest
SHA256 11527448c6598a3e1aa73381e9d590d9ce3f0544c2f364f3fbfaaae0d2e1d359
MD5 71e36b364e6392ea2f9837655f4f2d30
BLAKE2b-256 e8a5fcf51431606ee64436aeef7f07afeb250ae2b2ad9cd30f2ff7a2de9e667b

See more details on using hashes here.

Supported by

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