Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MQTT with Mosquitto

Tags:

mqtt

mosquitto

What message queues are supported by Mosqitto (http://mosquitto.org/)? Also I want to know in MQTT protocol, a different message queue is created for each topic or it can be done without that in case of memory constraints.

like image 333
Abhishek Maheshwari Avatar asked Oct 08 '14 13:10

Abhishek Maheshwari


1 Answers

Mosquitto only supports MQTT. MQTT doesn't have the concept of what is normally considered a queue. Having said that, each client has a queue of messages that will be delivered to it. The number of messages in the client queue can be limited with a configuration option. In the future there will be an option to globally limit heap usage and hence the overall length of queues.

like image 128
ralight Avatar answered Sep 26 '22 00:09

ralight