dae/docs/getting-started/reload-and-suspend.md
Kevin Yu eac04e991b
ci: add check-docs workflow (#93)
* ci: add check-docs workflow

* chore: ignore node_modules

* chore(deps): add package-lock

* style: apply formatting

* style: apply formatting

* fix: fix typo

* fix: fix all proposed changes by markdown-lint

* fix: fix trailing spaces

* fix(troubleshooting.md): apply minor fi

* fix(getting-started): apply minior fix

* ci: dont' kick off build when changes made to check-doc.yml

* ci: ONLY kick off build when target workflow file changes

* trigger build

* fix(build.yml): fix syntax

* trigger build

* fix: fix broken syntax
2023-05-21 00:41:44 +08:00

30 lines
536 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 reloading is much faster than restarting.
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
```