A brief discussion on processes, threads, and the choice between multithreading and multiprocessing

A brief discussion on processes, threads, and the choice between multithreading and multiprocessing

My understanding is that a process refers to an application running in the system; once a program is running, it is a process, or to put it more professionally: a process refers to an instance of a program when it is executed, and a thread is an entity of a process.

Process - the smallest unit of resource allocation, thread - the smallest unit of program execution.

[[258231]]

The difference between thread processes is reflected in several aspects:

0: Because the process has independent stack space and data segment, every time a new process is started, it must be allocated an independent address space, and many data tables must be established to maintain its code segment, stack segment, and data segment. This is very "luxurious" for multiple processes, and the system overhead is relatively large. Threads are different. Threads have independent stack space, but share data segments. They use the same address space and share most of the data. They are more economical than processes, with less overhead, faster switching speed, and high efficiency. However, it is precisely because of the independent characteristics of processes that the process security is relatively high. Also, because the process has an independent address space, after a process crashes, it will not affect other processes in protected mode, and a thread is just a different execution path in a process. The death of a thread is equivalent to the death of the entire process.

1: It is reflected in the communication mechanism. Because processes do not interfere with each other and are independent of each other, the communication mechanism of processes is relatively complex, such as pipes, signals, message queues, shared memory, sockets and other communication mechanisms. However, threads have a very convenient communication mechanism because they share data segments.

2: All threads belonging to the same process share all resources of the process, including file descriptors. Different processes are independent of each other.

3: Threads are also called lightweight processes. Processes have process control blocks, and threads have thread control blocks.

4: A thread can only belong to one process, while a process can have multiple threads and at least one thread;

5: Reflected in the program structure, let's take a simple and easy-to-understand example: when we use processes, we involuntarily use nested if else to judge pid, which makes the program structure cumbersome, but when we use threads, we can basically get rid of it. Of course, it still needs to be used when the internal execution function unit of the program needs to use it, so threads are very helpful to improve the program structure.

The choice of process and thread depends on the following points:

0: Prioritize threads that need to be created and destroyed frequently; because it is very costly for a process to create and destroy a process.

1: Threads switch quickly, so use threads when a lot of calculations are required and switching is frequent. Using threads for time-consuming operations can improve the responsiveness of the application.

2: Because threads are more advantageous in terms of CPU system efficiency, it may be necessary to develop processes for multi-machine distribution and threads for multi-core distribution;

3: Use threads for parallel operations, such as concurrent threads on the server side of C/S responding to user requests;

4: When you need more stability and security, it is suitable to choose process; when you need speed, it is better to choose thread.

<<:  How to play the NB-IoT game in 2019?

>>:  IPv4 and IPv6: Is the Internet Facing a Split?

Blog    

Recommend

In the cardless era, can eSIM gain a foothold in the IoT circle?

The basic functions of mobile phones remain uncha...

How 5G will benefit the Internet of Things

In this article, we want to turn our attention to...

New opportunities brought by 5G millimeter wave fixed wireless

The broadband industry’s new mission is to extend...

WiFi isn't that secure: Tips to protect your home network

Wireless routers have been attacked frequently re...

How businesses can prepare for 5G

[[355718]] While people may think of 5G as a cool...

Will the next 5G data package be an “unlimited data package”?

In the past two years, 4G unlimited data packages...

An article about NioEventLoopGroup source code analysis

[[408806]] This article is reprinted from the WeC...

...