On Aug 21, 2012, at 12:21 AM, Santosh N Dumbre wrote: > Is it possible to store message to database using zmq message queue ? > > Please suggest.
Zeromq doesn't have any code for storing anything into a database. You need to write that code yourself. You can use zeromq to move your messages from point A to B, C, ..., Z and store them wherever you wish. Like an earlier reply in this thread, you may be better off using rabbitmq or a similar message queue. So far it does not sound like zeromq is a good fit for you. Also, there are standard patterns for persisting data using zeromq as the transport. Read the guide and focus on chapter 4 (but read chapters 1, 2 and 3 first). cr
_______________________________________________ zeromq-dev mailing list [email protected] http://lists.zeromq.org/mailman/listinfo/zeromq-dev
