What is the minUptime

不问归期 提交于 2019-12-04 08:47:56

问题


I am using forever with my project. What do these options do:

  • minUptime
  • spinSleepTime

I didn't understand from GitHub page.


回答1:


Forever's documentation explains each briefly:

--minUptime      Minimum uptime (millis) for a script to not be considered "spinning"
--spinSleepTime  Time to wait (millis) between launches of a spinning script.

A "spinning" application is one that keeps failing/crashing shortly after a restart.

--minUptime sets the minimum amount of time that an application is expected to run. If it crashes before that limit, it's considered to be "spinning" or problematic.

--spinSleepTime sets an amount of time that forever will wait before trying to restart a "spinning" application again.

Collectively, they help prevent having an application rapidly being restarted only to crash each time.



来源:https://stackoverflow.com/questions/18390870/what-is-the-minuptime

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!