From a5816c4437848842fade6980e0acda806769cba4 Mon Sep 17 00:00:00 2001 From: Ask Solem Date: Wed, 18 May 2011 14:24:52 +0200 Subject: [PATCH] Updates README with SQS transport --- README.rst | 5 ++++- kombu/transport/SQS.py | 1 + 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 452b77d4..640fee27 100644 --- a/README.rst +++ b/README.rst @@ -29,7 +29,7 @@ Features * Virtual transports makes it really easy to add support for non-AMQP transports. There is already built-in support for `Redis`_, - `Beanstalk`_, `CouchDB`_, and `MongoDB`_. + `Beanstalk`_, `Amazon SQS`, `CouchDB`_, and `MongoDB`_. * SQLAlchemy and Django ORM transports exists as plug-ins ( `kombu-sqlalchemy`_ and `django-kombu`_). @@ -59,6 +59,7 @@ and the `Wikipedia article about AMQP`_. .. _`RabbitMQ`: http://www.rabbitmq.com/ .. _`AMQP`: http://amqp.org .. _`Redis`: http://code.google.com/p/redis/ +.. _`Amazon SQS`: http://aws.amazon.com/sqs/ .. _`MongoDB`: http://www.mongodb.org/ .. _`CouchDB`: http://couchdb.apache.org/ .. _`Beanstalk`: http://kr.github.com/beanstalkd/ @@ -85,6 +86,8 @@ Transport Comparison +---------------+----------+------------+-----------+---------------+ | *beanstalk* | Virtual | Yes | Yes[*]_ | No | +---------------+----------+------------+-----------+---------------+ +| *SQS* | Virtual | Yes | Yes[*]_ | No ++---------------+----------+------------+-----------+---------------+ | *mongodb* | Virtual | Yes | Yes[*]_ | No | +---------------+----------+------------+-----------+---------------+ | *couchdb* | Virtual | Yes | Yes[*]_ | No | diff --git a/kombu/transport/SQS.py b/kombu/transport/SQS.py index 063fd71a..64b1a331 100644 --- a/kombu/transport/SQS.py +++ b/kombu/transport/SQS.py @@ -18,6 +18,7 @@ from boto.sqs.message import Message from kombu.transport import virtual from kombu.utils import cached_property + class Channel(virtual.Channel): _client = None