A Brief Introduction to MQTT and Mosquitto

A Brief Introduction to MQTT and Mosquitto

Follow,Star Public Account to not miss exciting content Source: Embedded Miscellaneous Although my practical development experience with Linux is still limited, I am aware that there are several methods for inter-process communication: pipes, message queues, shared memory, sockets, etc. In a certain project, MQTT was used as the method for inter-process communication, which felt quite … Read more

A Comprehensive Guide to Python Multiprocessing Programming

A Comprehensive Guide to Python Multiprocessing Programming

A Comprehensive Guide to Python Multiprocessing Programming Implementing concurrent programming in Python is an important means to enhance program performance, and multiprocessing programming is an effective way to overcome the limitations of the Global Interpreter Lock (GIL). The multiprocessing module in the Python standard library provides developers with a complete solution for multiprocessing. This article … Read more

Using MQTT for Inter-Process Communication

Using MQTT for Inter-Process Communication

Introduction The previous article shared: “A Simple Understanding of MQTT and Mosquitto”, which only covered some concepts of MQTT and an introduction to Mosquitto. Then readers urged for more: In this article, we will share an example of using MQTT for inter-process communication. We will modify the comprehensive demo from the previous article “Examples of … Read more