http://bugzilla.spamassassin.org/show_bug.cgi?id=3097
------- Additional Comments From [EMAIL PROTECTED] 2004-04-14 08:04 ------- Subject: Re: Make spamd and (possibly) mass-check use Net::Server On Wed, Apr 14, 2004 at 01:09:47AM -0700, [EMAIL PROTECTED] wrote: > I'm curious about this too given that a server will tend to take a steady > fork/sec rate regardless of forking for each connection or maintaining a > available pool. Reuse of a child in a pool would be something altogether Yes, but the prefork method will have a much lower fork/sec rate than the fork-per-message model. For example: using the defaults of 5 children and 1000 messages per child before exiting... assume 5000 messages go through: fork-per-message will do 5000 fork() calls, once for each message. prefork will do approx. 10 fork() calls, 5 at the start, and approx. 5 at the end (depends if each child got 1000 connections evenly distributed...) > different but would require the removal of some of the existing features. Really? How so? The code I put in reuses the children all the time, and I didn't get rid of anything spamd already did. ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
