Variable Reactor.OpenOptions.gcRunThreshold

Allocation threshold to trigger a GC run

struct Reactor.OpenOptions
{
  // ...
  ulong gcRunThreshold = 16777216LU;
  // ...
}

If the amount of memory allocated since the previous GC run is less than this amount of bytes, the GC scan will be skipped.

Setting this value to 0 forces a run every gcInterval, regardless of how much was allocated.