Tagged Questions
The nice tag has no wiki summary.
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 ...
7
votes
2answers
4k views
Python: ulimit and nice for subprocess.call / subprocess.Popen?
I need to limit the amount of time and cpu taken by external command line apps I spawn from a python process using subprocess.call , mainly because sometimes the spawned process gets stuck and pins ...
6
votes
6answers
4k views
sudo nohup nice <— in what order?
So I have a script that I want to run as root, without hangup and nicely. What order should I put the commands in?
sudo nohup nice foo.bash &
or
nohup nice sudo foo.bash &
etc.
I suspect ...
4
votes
5answers
656 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:
...
3
votes
1answer
167 views
is nice() used to change the thread priority or the process priority?
The man page for nice says "nice() adds inc to the nice value for the calling process. So, can we use it to change the nice value for a thread created by pthread_create?
EDIT:
It seems that we do ...
3
votes
3answers
184 views
Difference between nice and setpriority in unix
I'm trying to implement a different flavor of the 'nice' command of unix in C. I have seen the definitions of nice() system call and setpriority() call. The nice() call only increments/decrements the ...
2
votes
2answers
54 views
Drupal Nice menu's issue in IE9
I am facing a IE9 issue with Nice menu's.
Its working fine for ie7,8 but not in ie9.
When open the page sub menus by default expanded without hovering on the main menu link.If anybody has a solution ...
2
votes
1answer
274 views
Manipulating thread's nice value
I wrote a simple program that implements master/worker scheme where the master is the main thread, and workers are created by it.
The main thread writes something to a shared buffer, and the worker ...
2
votes
1answer
291 views
Niceness and priority processes on linux system
I am looking for a way to modify a process' priority through command line.
I found the builtin (bash) nice and the command renice which allow to modify the niceness of the process, but not the actual ...
2
votes
3answers
598 views
the Nice programming language as an alternative to Java generics
I've been reading Bruce Eckel's Thinking In Java and in the chapter on generics, he briefly mentions the Nice programming language as something that handles parametrized types better than Java, but ...
2
votes
6answers
864 views
How to get a command line process to use less processing power
I am wondering how to get a process run at the command line to use less processing power. The problem I'm having is the the process is basically taking over the CPU and taking MySQL and the rest of ...
1
vote
3answers
96 views
On-The-Fly Image Generation in PHP
I'm developing a script that will allow people to generate a banner for them to use. It's customizable. During the customization process, I'd like to be able to have the banner reload on the spot. So ...
1
vote
1answer
37 views
Eclipse dev tools for Nice
I'd like to evaluate Nice.
For reasons of familiarity of the development environment, I'd like to stick with Eclipse, so I would like to find something like JDT/CDT for Nice in Eclipse. Anyone any ...
1
vote
1answer
655 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 ...
1
vote
5answers
540 views
How do I make php nicer to the CPU?
I'm running on a shared *NIX server (run by Site5). I have a php script that runs in the background occasionally doing some offline calculations. It uses around 100% CPU while it runs. I've tried ...
0
votes
0answers
24 views
nice menu's issue in IE Browser
I Am facing a problem with Nice menus on IE. every time when i refreshes any page on my site nice menues by default show all submenus.when page loading is complete menus are also goes hide.what is the ...
0
votes
1answer
231 views
How do i create nice looking controls?
I found a nice controls used by a software so wanted to use or build similar nice looking controls for my applications in vb.net
First Sample control is nice rounded cornor group box [ i guess so ]:
...
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 ...
0
votes
2answers
98 views
Application(hellanzb) is a system hog and nice 19 does nothing
I am both a contributor and user of the nntp nzb leecher called hellanzb for Unix like systems. It is written in python and works quite well. Though when the transmission rate is high and the ...
0
votes
1answer
97 views
How could I 'nice' Capistrano deployment?
How could I set a nice indice on cap:deploy ?
I want the remote server nice the cp commands like that :
nice -n 19 cp ...
Thenk you