in reply to Need to sort comma delimited, double quoted file
since files could be much larger
Exactly, how large? The important thing here is to know if the data would fit into your computer RAM or not when expanded into Perl data structures.
That would tell you if you need to use an internal or an external sorting algorithm.
Update: BTW, use Text::CSV_XS instead of Text::CSV.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Need to sort comma delimited, double quoted file
by Lotus1 (Vicar) on Jul 25, 2017 at 12:36 UTC |