mirror of https://github.com/celery/kombu.git
Updates README with SQS transport
This commit is contained in:
parent
03da6ed197
commit
a5816c4437
|
@ -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 |
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue