Metadata-Version: 1.1
Name: django-couchbase
Version: 0.0.3
Summary: Couchbase client for django memcache
Home-page: UNKNOWN
Author: MaxiL
Author-email: maxil@interserv.com.tw
License: UNKNOWN
Description: 
        2013/12/5
            add delete(), set_many(), delete_many(), incr(), decr()
        
        
        2013/12/2
            Couchbase client for django memcache
            basic behavior set() and get()
            
            settings
                
                USE_COUCHBASE = True
                if USE_COUCHBASE:
                    CACHES['default']['BACKEND']= 'django_couchbase.memcached.CouchbaseCache'
                    CACHES['default']['LOCATION'] = ['127.0.0.1:8091']
                    CACHES['default']['OPTIONS'] = {
                                                    'bucket': 'bk',
                                                    'password': 'password',
                                                    'operation_timeout': 20.5,
                                                    }
        
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Python Software Foundation License
Classifier: Programming Language :: Python
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries :: Python Modules
