[Zope] Zope and memory

Dieter Maurer dieter@handshake.de
Tue, 11 Jun 2002 21:40:15 +0200


Jerome hebert writes:
 > Zope 2.4 on a Debian 2.2 linux server.
 > ...
 > socrate:~# memstat  | sort -rn | more
 > 1958684k
 >   157416k: PID 14967 (/opt/Zope-2.4.0-linux2-x86/bin/python)
 >   157416k: PID 14966 (/opt/Zope-2.4.0-linux2-x86/bin/python)
 >   157416k: PID 14965 (/opt/Zope-2.4.0-linux2-x86/bin/python)
 >   157416k: PID 14964 (/opt/Zope-2.4.0-linux2-x86/bin/python)
 >   157416k: PID 14963 (/opt/Zope-2.4.0-linux2-x86/bin/python)
 >   157416k: PID 14692 (/opt/Zope-2.4.0-linux2-x86/bin/python)
Your Zope uses 157 MB. This is not yet something, you need to worry about.

Under Linux, threads are implemented by processes. However, they
share the memory. All Zope processes/threads together use
157 MB, not each one of them.


Dieter