Apache에서 accept4()가 느린 이유는 무엇입니까?

Apache에서 accept4()가 느린 이유는 무엇입니까?

나는 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

관련 정보