FAQ

Online Documentation   -   Statistics   -   FAQ   -   Plugin Parts (All, Dependencies)   -   Class hierarchy

New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1

The list of the   topics,   classes,   interfaces,   controls,   modules,   global methods by category,   global methods by name,   screenshots,   licenses   and   examples.

Platforms to show: All Mac Windows Linux Cross-Platform

FAQ.How to keep my web app from using 100% CPU time?

Answer: On Linux and MacOS you can use renice command in the terminal. On Windows use the task manager to reduce priority.

If you launch your app with nohup on Linux or Mac OS X like this from the terminal or a script:

nohup /webapps/MyApp/MyApp &

you can simply have a second line saying this:

renice 20 $!

which tells the system to lower priority to lowest value for the latest background process.


💬 Ask a question or report a problem