Metadata-Version: 1.1
Name: redis-netlock
Version: 1.0
Summary: 一个用redis做的分布式锁，含有超时及重试机制.
Home-page: http://xiaorui.cc/
Author: ruifengyun
Author-email: rfyiamcool@163.com
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 redis
        import time
        from redis_netlock import dist_lock
        
        client = redis.Redis(connection_pool=redis.BlockingConnectionPool(max_connections=15, host='localhost', port=6379))
        with dist_lock('test', client):
            time.sleep(10)
            print 'welcome to my blog, http://xiaorui.cc'
        
        
Keywords: redis 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
