Table of Contents
Reply content:
Home Backend Development PHP Tutorial socket - using php multi-threading, multi-process? ?

socket - using php multi-threading, multi-process? ?

Sep 21, 2016 pm 02:13 PM
php socket socket programming

I. What is the usage of php multi-process? ? (used by most php programs | almost never used)

II. What is the usage of php multi-threading? ? (used by most php programs | almost never used)

III. How do php multi-process and php multi-thread compare with java? ? (simply terrible | not even close)

Almost everyone on the Internet writes that PHP is not suitable for multi-threading (is it also not suitable for multi-process??). Does this mean that there is no need to understand PHP-related features such as multi-threading and multi-process? ?

And recently, due to personal preferences, I want to make a web-based chat tool similar to QQ. Now I basically understand socket communication, but I have learned about open source communication frameworks like Workerman. His feature introduction includes the following:

socket - using php multi-threading, multi-process? ?

socket - using php multi-threading, multi-process? ?

socket - using php multi-threading, multi-process? ?

I. Can PHP multi-process take advantage of multi-core CPUs, improve performance, and support high concurrency? ?

II. A single php process can support thousands or even tens of thousands of concurrent connections, and multiple processes can support hundreds of thousands or even millions of concurrent connections. How to understand this sentence? ? Since it uses sockets for communication, the number of ports is actually fixed and will not exceed 65536. One port represents a pair of connections. The thousands mentioned here -" tens of thousands may be better, multi-process Are the hundreds of thousands or millions of bets so powerful? ?

Reply content:

I. How is the usage of php multi-process? ? (used by most php programs | almost never used)

II. What is the usage of php multi-threading? ? (used by most php programs | almost never used)

III. How do php multi-process and php multi-thread compare with java? ? (simply terrible | not even close)

It is almost written on the Internet that PHP is not suitable for multi-threading (is it also not suitable for multi-process??). Does this mean that there is no need to understand PHP-related features such as multi-threading and multi-process? ?

And recently, due to personal preferences, I want to make a web chat tool similar to QQ. Now I basically understand socket communication, but I have learned about open source communication frameworks like Workerman. His feature introduction includes the following:

socket - using php multi-threading, multi-process? ?

socket - using php multi-threading, multi-process? ?

socket - using php multi-threading, multi-process? ?

I. Can PHP multi-process take advantage of multi-core CPUs, improve performance, and support high concurrency? ?

II. A single php process can support thousands or even tens of thousands of concurrent connections, and multiple processes can support hundreds of thousands or even millions of concurrent connections. How to understand this sentence? ? Since it uses sockets for communication, the number of ports is actually fixed and will not exceed 65536. One port represents a pair of connections. The thousands mentioned here -" tens of thousands may be better, multi-process Are the hundreds of thousands or millions of bets so powerful? ?

Correct a concept: the total number of ports is an unsigned short, which is 65535. This does not mean that a server can only support so many connections! One port corresponds to one process, and the number of connections of a process is consistent with the number of socket descriptors opened by this process. The number of descriptors is on the order of 32-bit int. Of course, the system has a limit on the maximum descriptors of a process, which can be configured through kernel parameters, but hundreds of thousands are definitely no problem.

The working principle of a typical multi-process http server is roughly like this: a process is responsible for monitoring the connection on port 80. When the connection arrives, the corresponding descriptor is created by the kernel, and then the process finds a relatively idle child process To process this descriptor, that is, read and write data on this descriptor. Note that this is a child process. It is precisely because of the child process that descriptors can be passed between parent and child processes. If the number of accesses increases and the number of child processes is insufficient, the parent process can create new child processes to handle descriptors as appropriate; the parent process should implement a simple load balancing strategy to a certain extent.

The working principle of the http server based on multi-threading is actually similar. Changing the above process to thread can also be explained.

The above explanation has nothing to do with PHP. PHP just encapsulates these underlying concepts and system calls. Most people use php which is based on the php script interpreter. And workerman should be an http service implemented based on php-encapsulated system calls.

  • The php process is managed by php-fpm (implementation of fastcgi): the master process will distribute requests to child processes

    • master process: service communicates with web server

      • Communication implementation method 1: http socket (host + port), will occupy one port, so that means php-fpm only occupies one port here

      • Communication implementation method two: unix domain socket (inter-process communication), which is based on .sock file and does not rely on network protocols, so in theory it does not occupy ports

    • pool process: child process, including parser, parsing script

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles