When use got with dnsCache, once hostname resolved, then until ttl, no lookup event emitted on the socket, so lookup time should be 0.
But above the code 2, dns never be 0 but tcp(connection time) will be 0.
When Server got a lot of traffic and got's socket connection delayed, value of tcp will not increased ( this always be 0 ), but value of dns increased.
I think this is causing confusion and needs to be fixed
I use got http client and I use option
{dnsCache: true}
.In http-timer packages, theres's two code to calculate dns duration.
on socket's
lookup event
listener https://github.com/szmarczak/http-timer/blob/62f6b38f7cfaf9936fe2f432e648cf65860c8d17/source/index.ts#L93-L98deferToConnect()
's connect callback function https://github.com/szmarczak/http-timer/blob/62f6b38f7cfaf9936fe2f432e648cf65860c8d17/source/index.ts#L102-L110When use got with dnsCache, once hostname resolved, then until ttl, no lookup event emitted on the socket, so lookup time should be 0.
But above the code 2, dns never be 0 but tcp(connection time) will be 0.
When Server got a lot of traffic and got's socket connection delayed, value of tcp will not increased ( this always be 0 ), but value of dns increased.
I think this is causing confusion and needs to be fixed