Skip to main content
#local_mutex
本地锁,通过fcntl针对文件加锁实现的. 需要强烈注意的是,多线程下是无效的,原因? [查看链接](http://xiaorui.cc)

#Usage:

最简单的例子,适合一个程序同时跑一个的场景.
```
import sys
from local_mutex import LocalMutex

try:
lock = LocalMutex('app.lock')
except LockError:
sys.exit('already running')

try:
print 'doing'
finally:
lock.release()
```

使用wait参数不停的试图获取Lock, 直到获取锁.
```
lock = LocalMutex('/var/run/app.lock', wait = True)
try:
print 'doing'
finally:
lock.release()
```

使用with关键词
```
with LocalMutex('app.lock', wait = True):
print 'doing'
```

如果是多线程环境,直接用threading的Lock
```
import threading
lock = threading.Lock()
with lock:
pass
```

Download files

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

Source Distribution

local_mutex-1.0.tar.gz (2.3 kB view details)

Uploaded Source

File details

Details for the file local_mutex-1.0.tar.gz.

File metadata

  • Download URL: local_mutex-1.0.tar.gz
  • Upload date:
  • Size: 2.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for local_mutex-1.0.tar.gz
Algorithm Hash digest
SHA256 c85ad5977629d97ce5b8715fe343bf04f3409b2bc8cf840dca7e00f1303549cc
MD5 660586bcc146d8f4de8e3206b014e46c
BLAKE2b-256 aa3f9d71f4992b5f55c662569bed5fbdbc9fe057f0ecc004dbb190caaa82219e

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

1.0 This release

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page