


javascript - If there are multiple ajax accesses to the background on a page, is the background single-threaded at this time? Or multi-threaded
If the backend uses the thinkphp framework and multiple ajaxes on the page access the backend server, will the backend server operate asynchronously with single threads or multi-threads at this time? I hope someone who knows me can tell me
Reply content:
If the backend uses the thinkphp framework and multiple ajaxes on the page access the backend server, will the backend server operate asynchronously with single threads or multi-threads at this time? I hope someone who knows me can tell me
The default is multi-process, not multi-thread, and one process handles one request. PHP multi-threading requires the installation of extension implementations, but the same process still receives an http request. Unless you implement a web server in PHP and then distribute the request using multi-threading, you can implement one thread and one request.
Apache defaults to prefork working mode. PHP is a module module. A new process is created in response to a request. The maximum number of processes depends on the apache configuration. nginx communicates with php-fpm through fast-cgi, which is also a process per request. The maximum number of processes depends on the php-fpm configuration.
If the backend processing time of a request is too long and it is blocked, and multiple identical requests will fill up the number of processes, all subsequent requests will be waiting for available sockets
This depends on your server, whether it is single-threaded or multi-threaded, or even multi-process.
What I understand about single thread
and multithread
is this,
For example, if you use a formto upload a file
, this is just a request. You only initiated a request to upload a file. After receiving your request to upload a file, the server found that your file was really big. He wanted it to be If he had to carry it alone, he probably wouldn't be able to get off work at 10 pm. Then he automatically (fork
) some helpers, which is equivalent to creating some new threads to help him complete the file upload. Multi-person collaboration must be very fast, so You can complete your large file upload in minutes, this is multi-threading,
Single threading means one person has to work hard until dawn,
So, whether the server is single-threaded or multi-threaded does not depend on how many requests your client
initiates. The client initiates 10,000 requests at the same time (whether synchronously or asynchronously). This is called concurrency
, and multi-threading It doesn’t matter,
A single thread cannot implement concurrent requests.
You can imagine this scenario: the user's download speed is 1k, and then requests a 1M picture. If the server is single-threaded, the next request will take 17 minutes to start responding. Obviously, it is impossible for you to play like this.
So the web server must be multi-threaded.
In terms of the number of threads, it is usually a single digit above 4. However, this is a limitation of the browser. There is a limit to the number of requests initiated by a single page. If there are too many, they will be thrown into the queue and wait. This is why sometimes a page It quoted Google's CDN file, but even the web page images were stuck and could not be loaded.
What I’m confused about is this: What I’m confused about is that apache+php is blocking and nginx+php is asynchronous. So if it is an apache server, is PHP blocked in responding to ajax requests?
php is a single-process single-thread model. The ajax request you mentioned is also equivalent to an http request, so there is no multi-threading. The ajax of js is implemented by asynchronous request! ! !
The client-side concurrency and server-side request processing methods (single-threaded, multi-threaded) depend on the application scenario. In most scenarios, the server-side is parallel and non-blocking

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.
