mirror of
https://github.com/matrix-construct/construct
synced 2025-02-18 09:40:12 +01:00
ircd::db: No need to start pools with more than 0 ctxs.
This commit is contained in:
parent
fe69a41255
commit
5326f434d9
1 changed files with 3 additions and 3 deletions
6
include/ircd/db/database/env/state.h
vendored
6
include/ircd/db/database/env/state.h
vendored
|
@ -31,9 +31,9 @@ struct ircd::db::database::env::state
|
|||
std::array<ctx::pool, POOLS> pool
|
||||
{{
|
||||
// name of pool stack size initial workers
|
||||
{ "bottom", 128_KiB, 1 },
|
||||
{ "low", 128_KiB, 1 },
|
||||
{ "high", 128_KiB, 1 },
|
||||
{ "bottom", 128_KiB, 0 },
|
||||
{ "low", 128_KiB, 0 },
|
||||
{ "high", 128_KiB, 0 },
|
||||
}};
|
||||
|
||||
state(database *const &d)
|
||||
|
|
Loading…
Add table
Reference in a new issue