in reply to Re^7: trying to decide best data structure for problem at hand.
in thread trying to decide best data structure for problem at hand.
So this code creating 3 hashes one with a key of name and the next with a key of uid and gid, gecos and host are values in the last hash? thank you##-- Create a HoHoH. 1st hash keyed by name, that accesses 2nd hash k +eyed by UID, that accesses 3rd hash keyed by remaining items: gid,gec +os and hostname --## $dub_hash{$name}{$uid} = { # User data keyed by uid gid => $gid, gecos => $gecos, host => $host,
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^9: trying to decide best data structure for problem at hand.
by GrandFather (Saint) on Jan 10, 2007 at 19:19 UTC | |
by mikejones (Scribe) on Jan 12, 2007 at 20:46 UTC |