Is the RabbitMQ RPC a kind of "Work queue" with response? -


is rabbitmq rpc kind of work queue response? in rpc description can read:

if rpc server slow, can scale running one. try running second rpc_server.py in new console.

so in mind rpc worker queue , every worker responding if task done. or wrong?

worker queue: https://www.rabbitmq.com/tutorials/tutorial-two-spring-amqp.html

enter image description here

rpc: https://www.rabbitmq.com/tutorials/tutorial-six-spring-amqp.html

enter image description here

thanks in advance.

the 2 chapter different case teach different things.

worker queue teach concept of prefetch. can set basicqos.

rpc show basicproperties of message , exclusive of queue.

if want know more basicqos/basicproperties/etc, can check api or spec.

you can combine work queue , rpc together. can append 2 or more server consumer rpc_queue.


Comments

Popular posts from this blog

PHP and MySQL WP -

android - InAppBilling registering BroadcastReceiver in AndroidManifest -

go - golang pprof for c library code -