Metadata-Version: 1.1
Name: memcache-clone
Version: 1.0.2
Summary: this is a clone memcache data to othor memcahe .
Home-page: https://github.com/freelingchang/memcache_clone
Author: lingchang
Author-email: freelingchang@email.com
License: MIT
Description: clone memcache data to other memcache
        Usage Example:
            from memcache_clone import memcache
            s = memcache('127.0.0.1',11211)
            s.con()
            #set(key,value,len,flags,express)
            s.set("key","value",5,0,0)
            #get(key) return list : list[value,value_len,flags]
            s.get("key")[0]
            #clone
            s.clone('127.0.0.1',11212)
        
Keywords: memcache clone package
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
