log

age author description
Wed, 16 Sep 2009 15:03:15 +0000 mcroydon Bumped __version__ to 0.5.
Wed, 16 Sep 2009 14:39:50 +0000 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.
Tue, 25 Aug 2009 21:48:23 +0000 mcroydon Updated test to account for some backends returning unicode data and some not.
Tue, 25 Aug 2009 21:48:20 +0000 mcroydon Fixed a bug in the redisd backend that made delete_queue not respect QUEUE_REDIS_DB.
Wed, 01 Jul 2009 19:01:10 +0000 mcroydon Added dummy backend that uses Python's built-in Queue class, very useful for testing. Fixes #3. Thanks, Daniel.
Wed, 20 May 2009 19:39:37 +0000 mcroydon Updated version to 0.4 which includes two new backends: redisd and zenqueued.
Wed, 20 May 2009 19:25:14 +0000 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.