On Tue, 22 Jul 2003, Justin Mason wrote:
> Nik Conwell writes:
> >Just curious why you didn't implement code to walk the breadth of the namespace
> >of the object and delete every member variable? Performance issues?
>
> Hmm, never occurred to me ;) That would be a
On Mon, 21 Jul 2003, Justin Mason wrote:
[...]
> It is leaking memory -- we haven't had time to check it out. Basically,
[...]
> refs need to be deleted from finish() by hand, instead of relying on the
> perl GC. We have quite a few deleted, but there's more we've probably
> missed.
Thanks
I have a daemon that essentially does:
$spamtest = Mail::SpamAssassin->new;
while() {
$mail = Mail::SpamAssassin::NoMailAudit->new( nomime => 1, data => [EMAIL
PROTECTED]);
$status = $spamtest->check($mail);
$status->finish();
}
and I've found that it continually consumes memor