Is there any way to explicitly disable GC runs (at least most time-consuming ones, like GC interrupts in old space) during the specified period of time, while executing some code sensitive to delays? Something like this:
disableGc();
runCodeWithoutDelays();
enableGc();
Probably using some node options, or native modules? Or can I write my own module, is there an API in V8 for that?