in reply to Re: memory consumption
in thread memory consumption
Some notes:
Often, it is a bad when two instance of a program run at the same time. So, when you run the script using "scheduled tasks", and this is a problem, check that the current instance is the only instance (which is another common problem).
Windows has no exec() system call, so that trick won't work on Windows. (Windows also lacks fork(). Another reason to stay away from Windows. ;-) Recent perl versions try to emulate both, but the emulation is far from being complete - simply because Windows has no equivalent of that API calls.)
exec $0 removes all command line arguments. Often, you don't want that. exec($0,@ARGV) keeps them.
In any case, exec() removes all context your program had, it literally starts from the beginning. If you need some state information, you have to keep it outside of the process, e.g. in a file or in an environment variable.
Alexander
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: memory consumption
by JavaFan (Canon) on Jul 07, 2009 at 19:35 UTC |