Table of Contents
回复内容:

php的一些疑惑

Jun 06, 2016 pm 08:39 PM
php

php是不是这样的,当一个请求产生后,后台会生成一个相对应的线程来处理用户请求。我不知道怎么模拟这样的问题,还有java也是这样的模型嘛。我是前端开发人员,研究node的时候,听说它是单线程的。那么它是怎么处理大量并发请求的?

这个问题已被关闭,原因:

回复内容:

php是不是这样的,当一个请求产生后,后台会生成一个相对应的线程来处理用户请求。我不知道怎么模拟这样的问题,还有java也是这样的模型嘛。我是前端开发人员,研究node的时候,听说它是单线程的。那么它是怎么处理大量并发请求的?

这跟语言没有关系。

题主的问题如果回答起来,其实要长篇大论的。我就之这儿言简意赅了。

处理大量并发,是跟 io 模型有关。

java: 目前实现了 jsr servlet 规范标准的大多数容器 都是用了 多线程同步模型 来处理请求。 例如著名的 tomcat,也有使用了 多线程异步模型的 例如 eclipse 基金会的 jetty 项目。

多线程同步模型: 意味着一个请求对应一个线程,io是同步阻塞的。

php: php目前大多都是使用了 php-fpm 进程管理容器,来管理请求。这种模型是 多进程同步模型。 但是 PHP 有一个项目叫做 ReactPHP 和 使用的是 单进程异步io 这个和 nodejs 倒是有很相似。

多进程同步模型: 意味着一个请求对应一个进程。io是同步阻塞的。

nodejs: js 跟 nodejs,就像 java 和 jee 的关系,一个 是语言,一个是 平台。 要搞清楚。 nodejs 使用的是 单进程异步io

单进程异步io: 意味着,不管在多个请求都是一个进程处理,io 的非阻塞异步的。

异步 io 天生具有大吞吐量的优势。这种模型最开始是因为数据库的需要诞生。这里就不扯太多,因为还有很多操作系统的事。

异步 io 指的是 io 模型,而 单进程,单线程,多线程指的是计算模型,但是 io 模型和计算模型 与生俱来 就是分不开的,因为 io 的等待回阻塞线程。而异步io是没有等待的,所以异步 io 是不会阻塞线程的。 nodejs 虽然是单进程单线程,但是也具有惊人吞吐量的原因,就在于此。

大规模并发,大吞吐量 其实就是 io 的场景。

不阻塞 cpu 就意味着 单位时间 能处理更多的请求。 更多的的就不废话了。 在各个问题水太深。就说到这里把。

php-fpm就不会生成一个想对应的线程来处理,而是你可以配置启动几个work去处理用户请求。

nodejs 单进程多线程,每个请求对应一个线程
php 多进程,每个请求对应一个进程

題目不清晰,你到底是問php的困惑還是node的困惑

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 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months 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 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.

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

See all articles