mirror of
https://github.com/matrix-construct/construct
synced 2024-11-25 16:22:35 +01:00
ircd:Ⓜ️:vm: Reduce the default db::txn reserve overhead value.
This commit is contained in:
parent
dc5dab62e8
commit
eec696524a
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ struct ircd::m::vm::opts
|
|||
/// This value is added to reserve_bytes to account for indexing overhead
|
||||
/// in the database transaction allocation. Most evaluators have little
|
||||
/// reason to ever adjust this.
|
||||
size_t reserve_index {1536};
|
||||
size_t reserve_index {1024};
|
||||
|
||||
/// Mask of faults that are not thrown as exceptions out of eval(). If
|
||||
/// masked, the fault is returned from eval(). By default, the EXISTS
|
||||
|
|
Loading…
Reference in a new issue