0
0
Fork 0
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:
Jason Volk 2018-06-03 15:18:53 -07:00
parent dc5dab62e8
commit eec696524a

View file

@ -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