in reply to Re: creating and managing many hashes
in thread creating and managing many hashes
That should take seconds, not minutes.
poj#!/usr/bin/perl use strict; my $t0 = time; my @f = map{ sprintf 'product_%04d',$_ } 1..2083; my $count = 0; open OUT,'>','pairs.txt' or die "$!"; while (my $x = shift @f){ for my $y (@f){ ++$count; print OUT "$count\t$x\t$y\n"; } } close OUT; my $dur = time-$t0; print "$count in $dur s\n"; # 19s on raspberryPI
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: creating and managing many hashes
by Gtforce (Sexton) on Feb 19, 2018 at 10:49 UTC |