You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You might want to add an option to suspend the server, using SIGSTOP to freeze and SIGCONT to resume the process. This would only work on Unix-like platforms (Linux and macOS), but it would allow the server to be resumed instantly.
If you don't know what SIGSTOP and SIGCONT are, they essentially work the same as sleep mode but only for one process.
You might want to add an option to suspend the server, using
SIGSTOP
to freeze andSIGCONT
to resume the process. This would only work on Unix-like platforms (Linux and macOS), but it would allow the server to be resumed instantly.If you don't know what
SIGSTOP
andSIGCONT
are, they essentially work the same as sleep mode but only for one process.See also:
The text was updated successfully, but these errors were encountered: