in reply to Re^4: how apply large memory with perl?
in thread how apply large memory with perl?
I didn't realize that those doublings were done in new memory rather than appending to what was already allocated
If the process already has sufficient memory for the doubling, and the memory immediately above the existing allocation is free, then the C-style array of pointers that forms the backbone of a Perl array may be realloc()able in-place, thereby alleviating the necessity for the previous and next sized generations to coexist. It also avoids the necessity to copy the pointers. But that's a pretty big if.
That said, by far the biggest save comes from avoiding building big lists on the stack. For example, compare iterating an array using:
$#a = 1e6;; say grep /$$/, `tasklist`;; perl.exe 6740 Console 1 17 +,120 K $n=1e6-1; $t=time; ++$a[ $_ ] for 0..$n; print time()-$t;; 0.242353916168213 say grep /$$/, `tasklist`;; perl.exe 6740 Console 1 41 +,312 K
#a = 1e6;; say grep /$$/, `tasklist`;; perl.exe 4816 Console 1 17 +,128 K $n=1e6-1; $t=time; map ++$a[ $_ ], 0..$n; print time()-$t;; 0.32020902633667 say grep /$$/, `tasklist`;; perl.exe 4816 Console 1 88 +,688 K
$#a = 1e6;; say grep /$$/, `tasklist`;; perl.exe 8152 Console 1 17 +,152 K $t=time; ++$_ for @a; print time()-$t;; 0.709916114807129 say grep /$$/, `tasklist`;; perl.exe 8152 Console 1 73 +,712 K
(in this case), The Perl foreach-style loop ends up using twice as much memory and 3 times as much cpu as the much-decried iterator-style for loop!
When you routinely work with very large volumes of data and cpu-bound processes, rather than (typically cgi-based) IO-bound processes where 1 MB is often considered "big data"; you shall count yourself lucky the preponderance of programmers and pundits that fall into the latter camp have not yet exercised much influence on the nature of Perl.
I revel in Perl's TIMTOWTDI, that allows me to tailor my usage to the needs of my applications; rather than being forced into the straight-jacket of the theoretical "best way" as defined by someone(s) working in unrelated fields with entirely different criteria.
If I wanted the world of "only one good way", I'd use python.
|
---|