traveler has asked for the wisdom of the Perl Monks concerning the following question:
I want to find the linux users, and later I'll want find dave's PCs. The HoH will be much bigger and so I don't want to do an iterative search. Maybe a database would be better. I've heard of an in-memory SQL one with a module on CPAN, but I cannot remember the name or find it.use strict; use warnings; my %hoh = ( pc1 => { os => "win32", user => "dave"}, pc2 => { os => "linux", user => "john"}, pc3 => { os => "win32", user => "robin"} );
Any ideas?
--traveler
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: HoH search question
by BrowserUk (Patriarch) on Sep 25, 2003 at 20:42 UTC | |
|
Re: HoH search question
by stajich (Chaplain) on Sep 25, 2003 at 18:25 UTC | |
|
Re: HoH search question
by jdtoronto (Prior) on Sep 25, 2003 at 18:42 UTC |