-
Notifications
You must be signed in to change notification settings - Fork 428
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add documentation about config changes
- Loading branch information
1 parent
764b7d0
commit 52d3b2c
Showing
3 changed files
with
33 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
## Async workers | ||
|
||
The `async_writer` flag of MAM is now a section on its own, that absorbs previous flags related to it: `flush_interval`, `max_batch_size` and `pool_size` now become subelements of the `async_writer` section, with one more parameter, `enabled`. Below an example: | ||
|
||
```toml | ||
[modules.mod_mam_meta] | ||
flush_interval = 1000 | ||
max_batch_size = 100 | ||
muc.async_writer = false | ||
``` | ||
now becomes | ||
```toml | ||
[modules.mod_mam_meta] | ||
async_writer.flush_interval = 1000 | ||
async_writer.batch_size = 100 | ||
muc.async_writer.enabled = false | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters