Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
5answers
99 views

Is there some way to “nice” my JavaScript execution?

I'd like to run some calculations in a browser window, but I don't want it to slow the client computer down for user interaction, especially for single core machines. Is there some way to adjust the ...
4
votes
5answers
659 views

Is it possible to renice a subprocess?

I know about os.nice() it works perfect for parent process, but I need to do renice of my child subprocesses. I found way to do this, but it seems to be not very handy and too excessive: ...
1
vote
1answer
656 views

Does renice on a parent renice the child?

I know if I nice a shell script (ie: before it runs) all processes that start from the shell script will also be niced. What if I start a shell script and the renice it, do all the child processes ...
0
votes
1answer
325 views

Does PHP proc_nice leave Apache threads at new priority setting?

When executing proc_nice(), is it actually nice'ing Apache's thread? If so, and if the current user (non-super user) can't renice to its original priority is killing the Apache thread appropriate ...