Implements a distributed lock on top of memcached.
Project description
memcached_lock
Implements a distributed transaction using memcached or a memcached compatible storage.
Example
Basic example of usage:
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!?'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
memcached_lock-1.1.tar.gz
(1.9 kB
view hashes)
Built Distribution
memcached_lock-1.1-py2.6.egg
(3.0 kB
view hashes)