Metadata-Version: 1.1
Name: fsredis
Version: 0.4
Summary: fsredis: in-process redis api, persisting to file system.
Home-page: http://github.com/hpk42/fsredis
Author: holger krekel
Author-email: holger at merlinux.eu
License: MIT license
Description: fsredis
        =======
        
        fsredis is a Python module offering limited parts of the Python
        redis API, and persisting to the filesystem.
        
        To get started::
        
            pip install fsredis
        
        and then on the interactive python prompt::
        
            >>> from fsredis import FSRedis
            >>> redis = FSRedis(datadir)
            >>> redis.set("hello", "world")
            >>> redis.get("hello")
            world
        
        hopefully you have completion and can check for more operations :)
        
        There is some support for:
        
        - key/val: get/set/del
        - hashsets: hget/hset/hgetall/hexists/hmset
        - sets: sadd/smembers/srem
        
        These operations are tested both with the original Redis
        API and the FSRedis api on Python26, python26 and Python33.
        
        I welcome pull requests to fix things or add operations
        if they are tested.
        
        
        (C) Holger Krekel 2013, License: MIT
        
        
Platform: unix
Platform: linux
Platform: osx
Platform: cygwin
Platform: win32
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Utilities
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
