"Turn" confused what is the relationship between FastCGI and php-fpm?

Source: Internet
Author: User
Tags php source code

I check the relationship between FastCGI and php-fpm on the Internet, check for a week, the basic look at the times, it is very divergent opinions, there is no authoritative definition.

Online some say, fastcgi is a protocol, PHP-FPM realize this agreement, some say, PHP-FPM is fastcgi process Manager, used to manage the fastcgi process; some say, PHP-FPM is a patch of the PHP kernel; Modified the php.ini configuration file, there is no way to smooth restart, so the birth of php-fpm, and some say php-cgi is a PHP fastcgi manager, then why do you get a php-fpm out, I was more dizzy.

Send a paste, want to listen to everyone's understanding, on-line I have already looked at a time, because I looked for a week, haha, so want to listen to the original understanding.

6 answers

Answer 1:

At the beginning of this problem I also quite tangled, read the "HTTP authoritative guide" after the feeling clear a lot.

First of all, what does CGI do? CGI is designed to ensure that the data passed by the Web server is in a standard format and facilitates the writer of CGI programs.

Web server, such as Nginx, is simply the publisher of the content. For example, if the request/index.html, then the Web server will go to the file system to find this file, sent to the browser, here is distributed static data. Well, if the request is/index.php, according to the configuration file, Nginx know that this is not a static file, need to find a PHP parser to deal with, then he will simply handle the request to the PHP parser. What data will the Nginx send to the PHP parser? URL to have it, query string also have to have, post data also have, HTTP header can not be less, good, CGI is to specify what data to pass, in what format to the rear processing the request of the Protocol. Think carefully about where the users you are using in your PHP code come from.

When the Web server receives the/index.php request, it launches the corresponding CGI program, which is the parser for PHP. The PHP parser then parses the php.ini file, initializes the execution environment, then processes the request, and then returns the processed result in a format specified by the CGI, exiting the process. The Web server then returns the results to the browser.

Well, CGI is a protocol, it doesn't matter what the process is. What is that fastcgi? FastCGI is used to improve the performance of CGI programs.

Improve performance, what is the performance problem with CGI programs? "The PHP parser parses the php.ini file, initializes the execution environment," and here it is. The standard CGI performs these steps for each request (no idle fatigue!). Start the process very tired to say! ), so it takes longer to process each time. This is obviously unreasonable! So how did fastcgi do it? First, fastcgi initiates a master, parses the configuration file, initializes the execution environment, and then starts multiple workers. When the request comes in, master passes it to a worker, and then immediately accepts the next request. This avoids duplication of labor, and efficiency is naturally high. And when the worker is not enough, master can pre-boot several workers according to the configuration and so on, of course, the idle worker too much, will also stop some, this improves the performance, also saves the resources. This is FastCGI's management of the process.

What is that php-fpm? is a realization of the FASTCGI program, by the PHP official received.

As we all know, PHP's interpreter is php-cgi. PHP-CGI is just a CGI program, he himself can only parse the request, return the results, will not process management (the emperor, my concubine really do not AH!) So there are some programs that can dispatch php-cgi processes, such as spawn-fcgi separated by LIGHTHTTPD. Well php-fpm is such a thing, after a long period of development, gradually got everyone's approval (to know, in the previous few years everyone complained php-fpm stability is too poor), but also more and more popular.

Well, finally come back to your question.
Online some say that fastcgi is a protocol that PHP-FPM implemented this Protocol

Right.

Some say that PHP-FPM is the manager of the fastcgi process, used to manage the fastcgi process

Right. The management object of PHP-FPM is php-cgi. But it cannot be said that PHP-FPM is the manager of the fastcgi process, because the fastcgi is a protocol, it seems that no such process exists, even if there is php-fpm can not manage him (at least for now). Some say that php-fpm is a patch for the PHP kernel

Used to be right. Because PHP-FPM is not included in the PHP kernel at the beginning, to use this function, we need to find the same version of the source code php-fpm the kernel patch, and then compile. Later, after the PHP kernel integrates php-fpm, it is much easier to use--ENALBE-FPM as a compile parameter.

Some said that after modifying the php.ini configuration file, there is no way to smooth the restart, so the birth of PHP-FPM

Yes, after modifying php.ini, the php-cgi process does not have the means to smooth the restart. PHP-FPM This mechanism is the new worker with a new configuration, the already existing workers can rest after processing the hands of the work, through this mechanism to smooth over.

Some say that php-cgi is the FastCGI manager that comes with PHP, so why get a php-fpm out again.

Wrong. PHP-CGI is just a program that explains PHP scripts.

Answer 2:

You (PHP) go to the Eskimo (Web server, like Apache, Nginx) to talk about business

You speak Chinese (PHP code), he said Eskimo language (c code), do not understand each other, how to do? Then turn your words into English (FastCGI protocol).

How to convert it? You're going to use a translator (PHP-FPM)

(Of course, the other side also has a translation machine, that is his own)

Our translation machine is the newest, the old-fashioned one (php-cgi) was eliminated. But it (PHP-FPM) only the young (Linux system) will use, the old people (Windows system) will not play with it, but continue to use the old-fashioned one.

Answer 3:

I read the answers to the top three, but I always thought they were not well described.

FastCGI is an upgraded version of CGI, a language-agnostic protocol used to communicate programs (such as PHP, Python, Java) and Web servers (Apache2, Nginx), and in theory any program written in any language can provide Web services through fastcgi.

FastCGI is characterized by a process in which multiple requests are completed sequentially to achieve efficiency gains, and most FASTCGI implementations maintain a process pool.

And PHP-FPM is an implementation for PHP, FASTCGI, which manages a process pool to handle requests from the Web server. Currently, PHP-FPM is built into PHP.

But PHP-FPM is just a "PHP Fastcgi process Manager" that still invokes the PHP interpreter itself to handle the request, and the PHP interpreter (under Windows) is Php-cgi.exe.

Answer 4:

I do not know this, just to search: http://wenku.baidu.com/view/887de969561252d380eb6e92.html this link to see if it is helpful to you.

Answer 5:

CGI = http://www.w3.org/CGI/

FastCGI = http://www.fastcgi.com/drupal/

FPM = FastCGI Process Manager (FastCGI process Manager)

Only to help you here, classmate.

Answer 6:

FastCGI is an agreement, yes. PHP-FPM realized this agreement, yes. PHP-FPM's FASTCGI protocol needs a process, right? PHP-FPM implementation of the FASTCGI process is called php-cgi= =. So php-fpm is his own fastcgi or php-cgi process Manager, yes. PHP-FPM before 5.2 There was no official php-fpm. PHP-FPM is a third-party patch that you can use. After 5.2 Pinch, the official has been added by default, since then is not a patch.

======update:

reference: Http://baike.baidu.com/view/4168033.htm uses PHP-FPM to control the php-cgi fastcgi process before php-fpm. is to directly open the Php-cgi.exe (Win32), PHP-CGI process to process the FASTCGI request. Or a fastcgi process management software similar to spawn-fcgi or UWSGI. The purpose of PHP-FPM is to solve the defects of similar managers such as spawn-fcgi and Uwsgi and integrate them into the official PHP.

In addition to correct: PHP-FPM is from the php5.3 after the version has been officially joined.

Excerpt from: http://segmentfault.com/q/1010000000256516

Note that in PHP5.2 and previous versions, the FASTCGI module name is mod_fastcgi, which requires additional download source installation, since PHP5.3 and later, the FastCGI module has been renamed PHP-FPM, and integrated in PHP, with the PHP source code with the release.

Reference old article: Configure Apache to run PHP with fastcgi

Extended reading:

What are CGI, FastCGI, php-cgi, PHP-FPM, spawn-fcgi?

PHP installation mode CGI, fastcgi, php_mod comparison

Windows three ways to run PHP (Php_mod, CGI, fastcgi)

"Turn" confused what is the relationship between FastCGI and php-fpm?

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.