mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-09 12:02:14 +00:00
23 lines
480 B
Markdown
23 lines
480 B
Markdown
---
|
|
tags:
|
|
- threadpool
|
|
---
|
|
|
|
# `kumo.set_httpinject_threads(N)`
|
|
|
|
{{since('2024.09.02-c5476b89')}}
|
|
|
|
Sets the number of threads to be used for the httpinject thread pool.
|
|
This thread pool is used to process http injection requests.
|
|
|
|
The default number of threads is computed using some unspecified fraction of
|
|
the available parallelism on the running system, and is shown in the journal on
|
|
startup.
|
|
|
|
```lua
|
|
kumo.on('pre_init', function()
|
|
kumo.set_httpinject_threads(12)
|
|
end)
|
|
```
|
|
|