http://www.perlmonks.org?node_id=1053079


in reply to Re: Data structures in Perl. A C programmer's perspective.
in thread Data structures in Perl. A C programmer's perspective.

When people talk about linked lists “storing data all over the place,” what they are really concerned about is locality of reference, i.e. minimizing the probability of a virtual-memory page fault
No. The linked list performance problem discussed in this thread was not caused by virtual-memory page faults, but by CPU cache misses.

  • Comment on Re^2: Data structures in Perl. A C programmer's perspective.