mirror of
https://github.com/daeuniverse/dae.git
synced 2025-01-10 07:17:00 +07:00
31 lines
532 B
Markdown
31 lines
532 B
Markdown
|
# Reload and Suspend
|
||
|
|
||
|
dae supports configuration reloading and program suspending, which can help you save a lot of time when modifying the configuration or temporarily suspend dae.
|
||
|
|
||
|
**Reload**
|
||
|
|
||
|
Generally, dae won't interrupt connections when reloading configuration. And it is very fast compared to restart.
|
||
|
|
||
|
Usage:
|
||
|
|
||
|
```shell
|
||
|
dae reload
|
||
|
```
|
||
|
|
||
|
**Suspend**
|
||
|
|
||
|
It will be useful if you want to suspend dae temporarily and recover it later.
|
||
|
|
||
|
Usage:
|
||
|
|
||
|
```shell
|
||
|
dae suspend
|
||
|
```
|
||
|
|
||
|
If you want to recover, use reload:
|
||
|
|
||
|
```shell
|
||
|
dae reload
|
||
|
```
|
||
|
|