QPID tutorial is my only ref so far. Also, it manages ssl/crypto for me. With ZeroMQ, i have to self manage encryption by putting it into clone/kvmsg structure, maintaining key set for different topic.
There are many small other things QPID supports by default, such as streaming message/file. I normally don't deal with large message (100mb), but trade report is large. Multi-part message is nice, but receiver wont get notification until last frame is delivered. During that, ping message from broker is not received and i got timeout trigger. I ended up have to break large one into many partial 1000b messages and manage receiving partial messages mixing with small full messages. Also, active/active clustering and federation on QPID is matter of configure. ZeroMQ only has concept, to get it into production, i need to implement more. Viet On Jan 3, 2013, at 2:37 AM, Pieter Hintjens <[email protected]> wrote: > On Wed, Jan 2, 2013 at 6:48 PM, Viet Hoang (Quant Edge) > <[email protected]> wrote: > >> After a while, I believe i'm reinventing the wheel, I could just use AMQP / >> QPID and no need to do coding or testing. Does ZeroMQ plan to support AMQP >> features in near future? > > I'd be rather surprised if AMQP supported this functionality or > anything close to it. > > Do you have a reference to the functionality you're referring to? > > -Pieter > _______________________________________________ > zeromq-dev mailing list > [email protected] > http://lists.zeromq.org/mailman/listinfo/zeromq-dev _______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
