use constant RECS => 1000000; { open my $fh, ">/tmp/bla.xml" or die; select $fh; print "\n"; for (1..RECS) { print < John Smith London EOF } print "\n"; } { require Storable; my @addresses; for (1..RECS) { push @addresses, { name => "John Smith", city => "London" }; } Storable::nstore(\@addresses, "/tmp/bla.st"); }