Metadata-Version: 1.1
Name: subredis
Version: 0.0.4
Summary: A Redis within your Redis
Home-page: UNKNOWN
Author: Doug Turnbull
Author-email: softwaredoug@gmail.com
License: Apache
Description: Subredis Redis Keyspace Management
        --------------------------------
        
        Do you ever want to give part of your application its own redis instance
        to do with as it please?
        
        This is exactly what subredis does. With a single redis backing instance,
        subredis wraps that instance and provides a fairly complete redis
        implementation,storing the data in keys prefixed by a specified prefix. IE
        
            sr = SubRedis("subspace", redis)
        
            # Work within the "subspace" keyspace
            sr.set("foo", "bar")
            sr.get("foo")
            sr.flushdb()
        
        Most direct uses of redis data structures are supported. Lua scripting and
        many of the administrative methods are not supported.
        
Keywords: redis,database
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Database
Classifier: Development Status :: 2 - Pre-Alpha
