Hi there!
We use Electron framework for our application that creates renderer processes that under the cover uses V8. We would like to increase the memory limit of those processes to 2000mb (BTW, we found that increasing the memory limit any further will make the process to instantly crash), for that when creating a new renderer process we set the flag: js-flags="--max_old_space_size=2000", however the process still crashes when reaching its default memory limit, ~1,400mb.
The environment were we found this behavior is Windows 32 bits.
Is there anything else we should be doing? Do you know how else we can increase the default memory limit?
Thank you very much for your time!