10 Jul
2001
10 Jul
'01
8:18 p.m.
Todd Hepler wrote:
I'm new to Zope. My understanding is that Zope and Medusa are threaded (as opposed to multi-process).
Actually it is both threaded and select-based.
If that is so, why does my Zope installation keep forking itself?
pstree -puc 6631 python(6631,thepler)---python(6632)---python(6636)-+-python(6637) |-python(6638) |-python(6639) `-python(6640)
If you run it on Linux then each thread shows up as a different process - that's how Linux implements threads . ------------------ Hannu