in reply to Useful number of childs revisited [SOLVED]
Using '/tmp' as the temp directory is badly broken on my machine. It spits lots of errors when exiting, and is trying to delete things that it doesn't own!
So I change it to this :-
mkdir '/tmp/1126078'; my $tmp = q(/tmp/1126078);
and now there's no significant difference between the 2 runs. But other than that, my guess is that you're just not doing enough real work, and you're only measuring setup/teardown times.
BTW I also got rid of the pointless iterator -- mainly because it's not installed here. What's wrong with for my n (@numbers) anyway?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Useful number of childs revisited
by karlgoethebier (Abbot) on May 08, 2015 at 14:05 UTC | |
Re^2: Useful number of childs revisited
by Anonymous Monk on May 08, 2015 at 17:22 UTC |