https://github.com/doist/memcached_lock
Implements a distributed transaction using memcached or a memcached compatible storage.
https://github.com/doist/memcached_lock
Last synced: over 1 year ago
JSON representation
Implements a distributed transaction using memcached or a memcached compatible storage.
- Host: GitHub
- URL: https://github.com/doist/memcached_lock
- Owner: Doist
- Created: 2010-03-30T09:02:05.000Z (over 16 years ago)
- Default Branch: master
- Last Pushed: 2022-02-01T19:20:02.000Z (over 4 years ago)
- Last Synced: 2025-03-28T10:21:43.337Z (over 1 year ago)
- Language: Python
- Homepage: http://pypi.python.org/pypi/memcached_lock
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
memcached_lock
-----
Implements a distributed transaction using memcached or
a memcached compatible storage.
Example:
from __future__ import with_statement
import memcache
from memcached_lock import dist_lock
client = memcache.Client(['127.0.0.1:11211'])
with dist_lock('test', client):
print 'Is there anybody out there!?'
© 2010 amix the lucky stiff
License BSD