Polyconseil / aioamqp

AMQP implementation using asyncio
Other
280 stars 88 forks source link

Question: is it better than asynqp ? #82

Closed socketpair closed 8 years ago

socketpair commented 8 years ago

https://github.com/benjamin-hodgson/asynqp

dzen commented 8 years ago

Hello @socketpair,

I've never tried asynqp, but this project looks great, with a sweet API. Since you've opened the same issue on this project, to let the author tell if his project is better than aioamqp, you probably have to use the project you'll prefer :)

mastak commented 8 years ago

It seems there is no exchange_bind method in asynqp.

And the source code of aioamqp is much more readeble, as for me =)

ambivalentno commented 8 years ago

Acknowledgement here is a coroutine, while in asynqp (imho) it's synchronous.

mpaolini commented 8 years ago

Acknowledgement here is a coroutine, while in asynqp (imho) it's synchronous.

@ambivalentno not really meaningful as the basic_client_ack in aioamqp never yields (even if it is a coroutine). In asyncio usually writes are synchronous because they just write to a buffer that will be emptied by the event loop when possible.

RemiCardona commented 8 years ago

Not much for us to do here. If you have any specific issues with aioamqp, please file another issue and we'll try to work on it.

Cheers