in reply to XML::CSV out of memory
In all honesty if you have a modern amount of RAM on your system, 500MB isn't that big.
That said, in the docs, it looks like you can do this:
use XML::CSV; $default_obj_xs = Text::CSV_XS->new({quote_char => '"'}); $csv_obj = XML::CSV->new({csv_xs => $default_obj_xs}); $csv_obj->{column_headings} = \@arr_of_headings; $csv_obj->{column_data} = \@arr_of_data; $csv_obj->print_xml("out.xml");
Basically, notice that you can pass a Text::CSV_XS object to XML::CSV, which would allow you to read in $n lines of the CSV file, and then pass them in as an array to XML::CSV. This would be fairly trivial to do, but if you can't get it figured out, come back and we can help you through it.
Three thousand years of beautiful tradition, from Moses to Sandy Koufax, you're god damn right I'm living in the fucking past
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: XML::CSV out of memory
by monkey_boy (Priest) on Mar 26, 2015 at 16:25 UTC | |
by stonecolddevin (Parson) on Mar 26, 2015 at 16:30 UTC | |
Re^2: XML::CSV out of memory
by slugger415 (Monk) on Mar 26, 2015 at 16:58 UTC | |
by RonW (Parson) on Mar 26, 2015 at 17:31 UTC | |
by stonecolddevin (Parson) on Mar 26, 2015 at 18:57 UTC |