search
HomeBackend DevelopmentPHP ProblemWhat are the differences between the PHP process model, process communication methods, and process threads?

The PHP process model is an executing program, an entity that can be assigned to a processor and executed by the processor; PHP process communication methods include pipes and named pipes, signals, shared memory, etc.; PHP process threads The difference is that a process is an independent unit for resource allocation and scheduling, while a thread is the basic unit of CPU scheduling.

What are the differences between the PHP process model, process communication methods, and process threads?

The differences between the PHP process model, process communication methods, and process threads are:

1. PHP process model

The concept of process is the basis of the structure of the operating system. The designers of Multics first used this technical term in the 1960s, and it is more general than homework. The definition of process is as follows:

1. An executing program.

2. An instance of a program running on the computer.

3. An entity that can be assigned to and executed by the processor.

4. An activity unit described by a single sequential thread of execution, a current state, and a set of related system resources.

Related learning recommendations: PHP programming from entry to proficiency

2. The difference between processes and threads

Process is the basic unit of resource allocation. All resources related to the process are recorded in the process control block PCB. To indicate that the process owns these resources or is using them.

In addition, the process is also the scheduling unit that preempts the processor, and it has a complete virtual address space. When processes are scheduled, different processes have different virtual address spaces, and different threads within the same process share the same address space.

Corresponding to the process, the thread has nothing to do with resource allocation. It belongs to a certain process and shares the resources of the process with other threads in the process.

Thread is composed only of relevant stack (system stack or user stack) registers and thread control table TCB. Registers can be used to store local variables within a thread, but cannot store variables related to other threads.

Usually a process can contain several threads, which can utilize the resources owned by the process. In operating systems that introduce threads, processes are usually regarded as the basic unit of resource allocation, and threads are regarded as the basic unit of independent operation and independent scheduling. Since threads are smaller than processes and basically do not own system resources, the overhead for scheduling them will be much smaller, which can more efficiently increase the degree of concurrent execution among multiple programs in the system, thereby significantly increasing system resources. utilization and throughput. Therefore, general-purpose operating systems launched in recent years have introduced threads to further improve the concurrency of the system, and regard it as an important indicator of modern operating systems.

The difference between threads and processes can be summarized as the following four points:

(1) A process is an independent unit for resource allocation and scheduling, while a thread is a CPU scheduling The basic unit

(2) The same process can include multiple threads, and the threads share the resources of the entire process (registers, stacks, context), and one process includes at least one thread.

(3) The creation of a process calls fork or vfork, and the creation of a thread calls pthread_create. After the process ends, all threads it owns will be destroyed, and the end of the thread will not affect other threads in the same process. End

(4) Threads are lightweight processes, and their creation and destruction take much less time than processes. All execution functions in the operating system are completed by creating threads

(5) Synchronization and mutual exclusion are generally required when executing in threads, because they share all resources of the same process

(6) Threads have their own private attributes TCB, thread id, registers, and hardware Context, and the process also has its own private attribute process control block PCB. These private attributes are not shared and are used to mark a process or a thread.

3. Inter-process communication method

1. Pipe (Pipe) and named pipe (named pipe): Pipes can be used for communication between processes with affinity relationships. Named pipes overcome the limitation that pipes do not have names. Therefore, In addition to the functions of pipes, it also allows communication between unrelated processes;

2. Signal: Signal is a relatively complex communication method used for notifications When a certain event occurs in a receiving process, in addition to being used for inter-process communication, the process can also send signals to the process itself; in addition to supporting the early Unix signal semantic function sigal, Linux also supports the signal function sigaction whose semantics conform to the Posix.1 standard (actually This function is based on BSD. In order to achieve a reliable signal mechanism and unify the external interface, BSD re-implemented the signal function using the sigaction function);

3. Message queue (message queue): The message queue is a linked list of messages, including the Posix message queue system V message queue. A process with sufficient permissions can add messages to the queue, and a process granted read permissions can read messages from the queue. The message queue overcomes the shortcomings of signals carrying a small amount of information, pipes can only carry unformatted byte streams, and buffer sizes are limited.

4. Shared memory: Allows multiple processes to access the same memory space, which is the fastest available IPC form. It is designed for the lower operating efficiency of other communication mechanisms. It is often used in conjunction with other communication mechanisms, such as semaphores, to achieve synchronization and mutual exclusion between processes.

Semaphore: Mainly used as a means of synchronization between processes and between different threads of the same process.

5. Socket: A more general inter-process communication mechanism that can be used for inter-process communication between different machines. It was originally developed for the BSD branch of Unix systems, but is now generally portable to other Unix-like systems: both Linux and System V variants support sockets.

The above is the detailed content of What are the differences between the PHP process model, process communication methods, and process threads?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
php怎么把负数转为正整数php怎么把负数转为正整数Apr 19, 2022 pm 08:59 PM

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

php怎么实现几秒后执行一个函数php怎么实现几秒后执行一个函数Apr 24, 2022 pm 01:12 PM

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php怎么除以100保留两位小数php怎么除以100保留两位小数Apr 22, 2022 pm 06:23 PM

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php怎么根据年月日判断是一年的第几天php怎么根据年月日判断是一年的第几天Apr 22, 2022 pm 05:02 PM

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

php字符串有没有下标php字符串有没有下标Apr 24, 2022 am 11:49 AM

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

php怎么替换nbsp空格符php怎么替换nbsp空格符Apr 24, 2022 pm 02:55 PM

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\&nbsp\;||\xc2\xa0)/","其他字符",$str)”语句。

php怎么读取字符串后几个字符php怎么读取字符串后几个字符Apr 22, 2022 pm 08:31 PM

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

php怎么判断有没有小数点php怎么判断有没有小数点Apr 20, 2022 pm 08:12 PM

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor