Trevor Assaf
Trevor Assaf

Reputation: 91

What is the optimal use case for MQTT?

I have a project that involves a backend communicating with numerous clients. I am searching for the optimal protocol to use. Is MQTT appropriate for my project?

Upvotes: 2

Views: 404

Answers (1)

Jeff Grimes
Jeff Grimes

Reputation: 2340

Mqtt is best suited for projects involving numerous users. The objective is to provide a light-weight protocol optimized around a publish/subscribe model. It is the perfect protocol for your project because it will disseminate information throughout your user-base more rapidly than most other protocols.

Upvotes: 3

Related Questions