Boon Chong Ang wrote: > > May I know what is the maximum number of data that I can stored within an > array? It seems that if the number of data exist 265, then it will be miss > already or it is due to memory problem?
Hi. I'm pretty sure that the theoretical size of Perl arrays is limited only by the maximum integer that can be used for the index. This is almost always a signed 32-bit value which can be up to about 2,000 million. The real limit is the amount of memory available to your process, but you should be fine with well over 265 elements. Please say why you think you can't exceed this number. What problem are you seeing? Rob -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>