4 messages in com.mysql.lists.perlRe: Memory escaping while using array...
FromSent OnAttachments
webmaster06 Dec 2004 01:54 
jose isaias cabrera06 Dec 2004 07:46 
webmaster06 Dec 2004 22:52 
Peter Pentchev07 Dec 2004 02:28 
Subject:Re: Memory escaping while using array reallocation.
From:jose isaias cabrera (jic@cinops.xerox.com)
Date:12/06/2004 07:46:55 AM
List:com.mysql.lists.perl

Hey, why take our word for it... try it. :-)

Hi, everybody.

I'm wondering if I use next instructions: while ( [some condition] ) { my @array = (1,2,3,4,5,6); ... some code ... @array = (); } then I hope Perl environment must be care about sufficient usage memory zone, occupied by array allocation during first declaration (e.g. my @array = (1,2,3,4,5,6);). Does it clean up all elements of array properly while proccessing statement '@array = ()' ?

Thanks , AZtpa