Why is time updating so important for a web server like nginx?

enter image description here

As you can see, every time a signal is received, nginx will be in the first place update time, why is it a timebig deal for web servers?

+5
source share
2 answers

nginx uses time to limit speed , among other things (for example, logging).

Implementing a good speed limit is probably the main reason for keeping the value as relevant as possible.

+2
source

In event-driven programming, a timer is an important thing used to handle a timeout event, etc.

, nginx , .

+2

All Articles