Thread Apache stürzt ab mit Fehlermeldung 70007 (50 answers)
Opened by Escape at 2010-01-18 17:11

Taulmarill
 2010-01-19 19:33
#130831 #130831
User since
2004-02-19
1750 Artikel
BenutzerIn

user image
2010-01-19T17:11:19 bianca
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%hash = (
        1 => {
                a       => '1',
        },
        2 => {
                b       => '2',
        },
        3 => {
                c       => '3',
        },
        4 => {
                d       => '4',
        },
);
for my $key (sort {$a <=> $b} keys %hash) { print (grep {1} keys %{$hash{$key}}) }

Da fände ich so was aber einfacher/eleganter:
Code (perl): (dl )
1
2
3
4
5
6
7
8
9
10
my @foo = (
    { a => '1', },
    { b => '2', },
    { c => '3', },
    { d => '4', },
);
for my $hash ( @foo ) {
    print keys %$hash;
    print "\n";
}

Und es verbraucht weniger CPU und RAM weil nicht jedes mal eine Liste mit keys neu sortiert werden muss.
$_=unpack"B*",~pack"H*",$_ and y&1|0& |#&&print"$_\n"for@.=qw BFA2F7C39139F45F78
0A28104594444504400 0A2F107D54447DE7800 0A2110453444450500 73CF1045138445F4800 0
F3EF2044E3D17DE 8A08A0451412411 F3CF207DF41C79E 820A20451412414 83E93C4513D17D2B

View full thread Apache stürzt ab mit Fehlermeldung 70007