Metadata-Version: 1.0
Name: redis_simple_queue
Version: 1.0
Summary: Python queue implemented on top of Redis.
Home-page: http://www.amix.dk/
Author: amix
Author-email: amix@amix.dk
License: BSD
Description: redis_simple_queue
        ---------------
        
        redis_simple_queue implements a queue on top of Redis.
        
        Requires:
        
        * Redis 2.0+
        * Newest version of redis-py http://github.com/andymccurdy/redis-py
        * redis_wrap http://pypi.python.org/pypi/redis_wrap
        
        Examples
        ----------
        
        Example of using the queue::
        
        from redis_simple_queue import *
        
        delete_jobs('tasks')
        
        put('tasks', '42')
        
        assert 'tasks' in get_all_queues()
        assert queue_stats('tasks')['queue_size'] == 1
        
        assert reserve('tasks') == '42'
        assert queue_stats('tasks')['queue_size'] == 0
        
        Copyright: 2010 by amix
        License: BSD.
Keywords: redis queue
Platform: Any
Classifier: Development Status :: 4 - Beta
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
