PhpMyadmin 服务器状态页面中的时间单位是什么?
What is the time unit which is in PhpMyadmin Server status page?
在 PHPMyAdmin server_status.php
页面中,我看到 time 列有一些整数值。时间列的unit是多少?
server_status.php
的输出是一个漂亮的 table,其中包含来自 show processlist;
查询的数据。正如您在 their reference:
中看到的
The time in seconds that the thread has been in its current state. For
a slave SQL thread, the value is the number of seconds between the
timestamp of the last replicated event and the real time of the slave
machine.
所以,秒了。
在 PHPMyAdmin server_status.php
页面中,我看到 time 列有一些整数值。时间列的unit是多少?
server_status.php
的输出是一个漂亮的 table,其中包含来自 show processlist;
查询的数据。正如您在 their reference:
The time in seconds that the thread has been in its current state. For a slave SQL thread, the value is the number of seconds between the timestamp of the last replicated event and the real time of the slave machine.
所以,秒了。