log

age author description
Sun, 20 May 2012 01:49:11 +0000 btimby blpop returns a tuple (queue_name, item) on success, on timeout, None, we need to handle both cases.
Sun, 20 May 2012 01:08:16 +0000 btimby Forgot return
Tue, 15 May 2012 20:58:27 +0000 btimby Redis requires and integer for a timeout (no floats)
Mon, 14 May 2012 19:22:57 +0000 btimby Added timeouts for blocking mode
Thu, 26 Apr 2012 14:49:46 +0000 btimby Perform blocking read when possible
Sun, 05 Feb 2012 03:30:23 +0000 btimby Loosen restriction for what is considered a "valid" queue backend.
Sun, 05 Feb 2012 03:28:19 +0000 btimby Handle importing valid module name as backend when that module is NOT a backend.
Sun, 05 Feb 2012 03:10:46 +0000 btimby Removed dead code from Redis backend.
Sun, 05 Feb 2012 03:09:04 +0000 btimby Implement timeout for Redis backend.
Tue, 31 May 2011 17:36:47 +0000 mcroydon Added dummy backend to MANIFEST. Released 0.6.2.
Thu, 16 Dec 2010 17:37:57 +0000 mcroydon Bump version to 0.6.1.
Thu, 16 Dec 2010 17:30:20 +0000 mcroydon Modern redis servers return 1 instead of 'OK'. Check for both.
Thu, 16 Dec 2010 16:46:17 +0000 mcroydon Updated queues to 0.6.
Thu, 06 May 2010 17:41:15 +0000 mcroydon Write to the end of the queue, not the beginning please.
Thu, 06 May 2010 17:24:41 +0000 mcroydon Redis backend: stop using reprecated pop/push and use lpop/lpush which should work in 0.900+.
Fri, 30 Apr 2010 15:58:07 +0000 mcroydon Fixed NameError in the delete_queue method in the dummy backend. Thanks for the report, cleifer.
Tue, 20 Oct 2009 22:01:12 +0000 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.
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.
Tue, 12 May 2009 14:20:28 +0000 mcroydon Added QUEUE_REDIS_CONNECTION and QUEUE_REDIS_DB settings. QUEUE_REDIS_CONNECTION is required but QUEUE_REDIS_DB is optional.
Tue, 12 May 2009 11:51:48 +0000 mcroydon Added first run at redisd backend using the MIT-licensed redis client included in the redis source. This backend does not yet support supplying host, port, and db (need to rethink configuration a bit).
Wed, 28 Jan 2009 12:51:50 +0000 mcroydon Added beanstalkd backend. Thanks, Daniel.
Thu, 08 Jan 2009 18:39:27 +0000 mcroydon Remove import from setup.py.
Thu, 08 Jan 2009 18:37:34 +0000 mcroydon Bump version number for Django compatability fix.
Thu, 08 Jan 2009 17:58:04 +0000 mcroydon Change django settings access to use getattr. Thanks, James.
Thu, 08 Jan 2009 15:40:25 +0000 mcroydon Removed test directory that git failed to remove for me.
Thu, 08 Jan 2009 08:08:08 +0000 mcroydon Replaced url in setup.py to point to the project. Thanks, Eric.
Thu, 08 Jan 2009 08:06:13 +0000 mcroydon Removed build dir.
Thu, 08 Jan 2009 07:59:00 +0000 mcroydon Add test module to setup.py.
Thu, 08 Jan 2009 07:55:51 +0000 mcroydon Cleanup build and old test dir.
Thu, 08 Jan 2009 07:49:35 +0000 mcroydon Initial commit with two tested backends: memcached protocol and Amazon SQS. Because of the non-guaranteed nature of SQS queues, some tests may fail even though the library is working properly.
Thu, 08 Jan 2009 07:43:34 +0000 unknown Initial directory structure.