Ich habe das von jemand anderem gesehennginx
配置中 fastcgi_pass
是unix:/tmp/php-cgi.sock
Und meine Konfiguration ist 127.0.0.1:9000
(不讨论负载均衡什么的,就是最简单的一个server
)
unix:/tmp/php-cgi.sock
和127.0.0.1:9000
Was ist der Unterschied zwischen den beiden?
Ich habephp-fpm.conf
in meinem
; The address on which to accept FastCGI requests.
; Valid syntaxes are:
; 'ip.add.re.ss:port' - to listen on a TCP socket to a specific address on
; a specific port;
; 'port' - to listen on a TCP socket to all addresses on a
; specific port;
; '/path/to/unix/socket' - to listen on a unix socket.
; Note: This value is mandatory.
listen = 127.0.0.1:9000
listen
的配置修改为/tmp/php-cgi.sock
?
嗯,unix socket会更加快一点,不走网络
另外放在/tmp目录不如放在内存里面
我一般放在 /dev/shm/php-fpm.sock
放在内存读取速度快更快的
理论上,unix socket不走网络,会快些,
可是,稳定性就不那么理想了,
这里有人做过测试,你可以参考
http://blog.csdn.net/liv2005/article/details/7741732