in reply to seeking in hash data structure
Check out the DBD::RAM module if you don't want to mess about with any persistence issues, DBD::SQLite if you don't mind/actually want simple disk storage or MySQL/Postgres if you're that kind of person.
You're make perhaps too much use of the fact that perl doesn't force types down your throat and are hence thinking of everything as a hash rather than an abstract type.
If so, maybe just defining a few struct-type classes will give you places to put your query methods without the need to go to a generalised query language like the above.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: seeking in hash data structure
by Corion (Patriarch) on Oct 25, 2006 at 08:58 UTC | |
by jbert (Priest) on Oct 25, 2006 at 10:05 UTC |