[Zope] Memory problems
Dieter Maurer
dieter@handshake.de
Wed, 10 Jan 2001 22:03:18 +0100 (CET)
Tom Deprez writes:
> ... potential memory leak ...
You can use the program "top" to analyse memory usage.
This will show you, which process[es] consume memory.
If Zope does it, then you can use "Control Panel->Debugging"
to get some hints where the leak may be.
> ... many Zope processes shown by "ps" (Linux) ...
Linux implements threads by processes that share memory
and other resources.
"ps" is still a bit stupid and does not visualize that
they are threads rather than normal (full blown) processes.
Dieter