If the second file is sorted, you could use the core module
Search::Dict for this. It would find an index in a million line file in no more than about 20 disk reads.
If you want a more efficient lookup, you can use a dbm file of some sort for this. People usually recommend BerkeleyDB (also accessible through DB_File) for this. Perl comes with SDBM_File. The drawback is that you have to build the dbm_file. For very large files I recommend sorting your input data and using a btree implementation (that is an option with Berkeley DB).
A third option that is worth considering is that you could use DBI and DBD::SQLite to create a real relational database. For this simple problem it is not worthwhile. But if your data structure is going to get more complex, or you might have several related tasks like this, then that is well worth considering.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.