Mercurial > public > queues
graph
- Forgot return2012-05-20, by btimby
- Redis requires and integer for a timeout (no floats)2012-05-15, by btimby
- Added timeouts for blocking mode2012-05-14, by btimby
- Perform blocking read when possible2012-04-26, by btimby
- Loosen restriction for what is considered a "valid" queue backend.2012-02-05, by btimby
- Handle importing valid module name as backend when that module is NOT a backend.2012-02-05, by btimby
- Removed dead code from Redis backend.2012-02-05, by btimby
- Implement timeout for Redis backend.2012-02-05, by btimby
- Added dummy backend to MANIFEST. Released 0.6.2.2011-05-31, by mcroydon
- Bump version to 0.6.1.2010-12-16, by mcroydon
- Modern redis servers return 1 instead of 'OK'. Check for both.2010-12-16, by mcroydon
- Updated queues to 0.6.2010-12-16, by mcroydon
- Write to the end of the queue, not the beginning please.2010-05-06, by mcroydon
- Redis backend: stop using reprecated pop/push and use lpop/lpush which should work in 0.900+.2010-05-06, by mcroydon
- Fixed NameError in the delete_queue method in the dummy backend. Thanks for the report, cleifer.2010-04-30, by mcroydon
- Added functionality for the dummy backend to make it behave more like a production backend for testability sake. Thanks to Travis Cline for the patch. Fixes issue #4.2009-10-20, by mcroydon
- Bumped __version__ to 0.5.2009-09-16, by mcroydon
- Updated version to 0.5 which includes a dummy backend useful for testing, fixed a bug in delete_queue in the redis backend, and updated tests to deal with some backends returning unicode and some not.2009-09-16, by mcroydon
- Updated test to account for some backends returning unicode data and some not.2009-08-25, by mcroydon
- Fixed a bug in the redisd backend that made delete_queue not respect QUEUE_REDIS_DB.2009-08-25, by mcroydon
- Added dummy backend that uses Python's built-in Queue class, very useful for testing. Fixes #3. Thanks, Daniel.2009-07-01, by mcroydon
- Updated version to 0.4 which includes two new backends: redisd and zenqueued.2009-05-20, by mcroydon
- Added zenqueue backend as zenqueued based heavily on a patch by Daniel Lindsley. To use the zenqueued backend you'll need to set QUEUE_BACKEND to zenqueued, and also set QUEUE_ZENQUEUE_CONNECTION. The zenqueued backend defaults to using the client for HTTP but you can use either the HTTP or native method by setting QUEUE_ZENQUEUE_METHOD to http or native. Note that zenqueue does not allow for multiple named queues, so the name argument to the Queue constructor is ignored. Several other options (__len__, delete_queue, and get_list) are not supported by zenqueue.2009-05-20, by mcroydon
- Added QUEUE_REDIS_CONNECTION and QUEUE_REDIS_DB settings. QUEUE_REDIS_CONNECTION is required but QUEUE_REDIS_DB is optional.2009-05-12, by mcroydon