Thread mehr speicher für perl (18 answers)
Opened by norman at 2005-06-23 14:37

norman
 2005-06-23 17:02
#47092 #47092
User since
2004-03-11
46 Artikel
BenutzerIn
[default_avatar]
Code: (dl )
scalar(%hash) = 50000;
bringt eine fehlermeldung, ich habs mit
Code: (dl )
keys %content_hash = 50000;
versucht. die performance bleibt aber die gleiche.

hatte noch eine schleife vergessen, die aber relativ selten genutzt wird, weil selten neue produkte dazu kommen.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# produkt_name => produkt_id
my %hash;
keys %content_hash = 50000;

%hash = (
'produkt1' => 1,
'produkt2' => 2,
'produkt3' => 3,
'produkt50000' => 50000
);

my @daten = ('produkt3','produkt2','produkt3','produkt50000');

# ids für die elemente im datenarray holen
my @data_ids; $#data_ids = $#daten;
foreach (@daten) {
     
 if(!defined($hash{$_})) { # wenn neues produkt, z.b. produkt50001, neues wertepaar im hash
   my @key = sort { $hash{$a} <=> $hash{$b} } keys %hash; # ordnen
   $hash{$_} = $hash{$key[-1]} + 1; # maximum + 1
 }
 push (@data_ids, $hash{$_});

} # foreach
\n\n

<!--EDIT|norman|1119532029-->

View full thread mehr speicher für perl