When there is no rDNS record on an IP address, then it might take a while for
the reverse lookup to timeout. I'm thinking of how on a tracert you can
observe the delay.
If so, then calling gethostbyaddr() can delay the serving of the web page,
right? Because gethostbyaddr() is not forked into a separate process. So I
suppose I'd need to call gethostbyaddr() as the very last task for a script.
Does that sound right? Or is there another way around the delay?
the reverse lookup to timeout. I'm thinking of how on a tracert you can
observe the delay.
If so, then calling gethostbyaddr() can delay the serving of the web page,
right? Because gethostbyaddr() is not forked into a separate process. So I
suppose I'd need to call gethostbyaddr() as the very last task for a script.
Does that sound right? Or is there another way around the delay?
Comment