Linux: Message Queue Vs Process

In Linux or any other operating system, the Queue mechanism helps to communicate internal processes to one another.

Srinimf
1 min readMar 8, 2020

In simple terms, a Queue is a File. It is like a simple flat file. And you can control Queue access to others.

Linux: Message Queue Vs Process
Photo by Icons8 Team on Unsplash

Usually, the messages in Queues are consumed by a Process. A process that sends a message to a Queue is called requester.

A process that receives a message you can say as Process. You can read more about the types of Queens and the actual relation between Queue and process.

References:

--

--