为什么 accept4() 在 Apache 中很慢?

为什么 accept4() 在 Apache 中很慢?

我在 Apache2 上运行一个网站,我注意到第一个位总是很慢。

我尝试诊断问题strace,发现accept4()每次请求都很慢。
以下是跟踪结果。这可能是什么原因造成的?

0.000120 accept4(4, {sa_family=AF_INET6, sin6_port=htons(36300), inet_pton(AF_INET6, "::ffff:127.0.0.1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, [28], SOCK_CLOEXEC) = 13
2.320681 getsockname(13, {sa_family=AF_INET6, sin6_port=htons(8090), inet_pton(AF_INET6, "::ffff:127.0.0.1", &sin6_addr), sin6_flowinfo=0, sin6_scope_id=0}, [28]) = 0
0.000148 fcntl(13, F_GETFL)        = 0x2 (flags O_RDWR)
0.000063 fcntl(13, F_SETFL, O_RDWR|O_NONBLOCK) = 0

相关内容