in reply to Large file, multi dimensional hash - out of memory
Your input data set appears to be sorted. Is that intentional? If that's the case you're in luck. You only need to keep track of a single name at a time. Walk through the input file line by line. Each time the name changes, write the previous name to an output file along with an extension summary.
Dave
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Large file, multi dimensional hash - out of memory
by Anonymous Monk on May 15, 2013 at 14:43 UTC | |
by davido (Cardinal) on May 15, 2013 at 15:23 UTC |