Thread nur 3. spalte in datei einlesen (10 answers)
Opened by bmxy at 2008-01-14 11:22

renee
 2008-01-14 12:45
#104688 #104688
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Benchmark:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/perl

use strict;
use warnings;
use Benchmark qw(cmpthese);

my @array = (1..10);
my $test = 9;

cmpthese(
  10000000,
  {
     negativ => sub{ my $x = $array[-2] },
     minus   => sub{ my $x = $array[$test-1] },
  }
);


Code: (dl )
1
2
3
             Rate   minus negativ
minus 4000000/s -- -39%
negativ 6600660/s 65% --
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread nur 3. spalte in datei einlesen