Is there any memory limit for Google Chrome browser?

后端 未结 5 2179
星月不相逢
星月不相逢 2020-12-05 22:33

What is the default memory limit for a single tab in chrome ??

5条回答
  •  时光取名叫无心
    2020-12-05 23:28

    I was able to increase the memory limit for my nw.js (chrome) based destkop app by passing following command line options:

    Node.js: node --max_old_space_size=12288 script.js
    Google Chrome: chrome.exe --js-flags="--max_old_space_size=12288"
    NW.js: add "js-flags": "--max_old_space_size=12288" to the package.json.
    

    Adjust 12288 (12GB) to suit your needs

提交回复
热议问题