Metadata-Version: 1.0
Name: memcached_lock
Version: 1.0
Summary: Implements a distributed lock on top of memcached.
Home-page: http://www.amix.dk/
Author: Amir Salihefendic
Author-email: amix@amix.dk
License: BSD
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!?'
        
Keywords: memcached lock distributed
Platform: Any
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
