Mercurial > public > queues
graph
- 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
- 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).2009-05-12, by mcroydon
- Added beanstalkd backend. Thanks, Daniel.2009-01-28, by mcroydon
- Remove import from setup.py.2009-01-08, by mcroydon
- Bump version number for Django compatability fix.2009-01-08, by mcroydon
- Change django settings access to use getattr. Thanks, James.2009-01-08, by mcroydon
- Removed test directory that git failed to remove for me.2009-01-08, by mcroydon
- Replaced url in setup.py to point to the project. Thanks, Eric.2009-01-08, by mcroydon
- Removed build dir.2009-01-08, by mcroydon
- Add test module to setup.py.2009-01-08, by mcroydon
- Cleanup build and old test dir.2009-01-08, by 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.2009-01-08, by mcroydon
- Initial directory structure.2009-01-08, by unknown