我知道它会来

我知道它来了

我知道它会和我纠缠一生

我怎么能杀死我呢

好了,我要成为我了

附:
Brave Heart

昨晚做了一个梦,梦见大家族聚会,有在世的也有离世的,可惜我叫错了长辈的名字。穿过长廊,坐在大厅里,周围幕布拉开,一条长长的铁轨从远方一路过来又延伸到另一端的远方,一大块翠绿的平原将卧轨和远处的高山连接了起来,视野极度舒展,有马群、羚羊之类的动物在自由的奔跑,其中有一匹高大的淡黄色的骏马一跃而起,跳的非常高,非常有力,非常……叮叮当当的蒸汽火车一路行来,遮挡了动物们。我们决定起身,去山的另一头看看。爬过半山腰,尽管未见大海,但感受到了海的气息,进入一片市场,有海鲜,有泳具,然后就醒了。

自解

和家人一起是一种安全感,过程中拿出笨重的iPad贪婪的拍摄美景,为什么不用手机呢?也许远离手机让人变得安静吧。


几年好在外写Blog了,就从这个梦开始继续更新吧

monitorEventLoopDelay 是什么

perf_hooks.monitorEventLoopDelay([options])

  • options: Object
    resolution: The sampling rate in milliseconds. Must be greater than zero. Default: 10.
  • Returns: Histogram

    Creates a Histogram object that samples and reports the event loop delay over time. The delays will be reported in nanoseconds.
    Using a timer to detect approximate event loop delay works because the execution of timers is tied specifically to the lifecycle of the libuv event loop. That is, a delay in the loop will cause a delay in the execution of the timer, and those delays are specifically what this API is intended to detect.

监控 EventLoop 运行情况是判断系统是否健康的重要指标之一,如果有大量的延迟,说明系统存在密集计算,降低了系统的吞吐。Node.js 在 v11 版本引入了monitorEventLoopDelay,而之前需要自己去实现。

Read More

Your browser is out-of-date!

Update your browser to view this website correctly. Update my browser now

×