I've used
Spreadsheet::ParseExcel::Stream instead of
Spreadsheet::ParseExcel and it uses 1.0GB memory after parsing an xls-file with a single worksheet and 64772 rows and 120 columns. This is before I go through the parsed worksheets and rows.
Opening this in Excel (2007) seems to use only 230MB.
So even with this module, reading a somewhat large Excel file uses excessively large amounts of memory.
Edit: The xls-file is 122MB.
print("Before creating new Spreadsheet::ParseExcel::Stream:\n" . `free
+ -m`);
my $ExcelParser = Spreadsheet::ParseExcel::Stream->new($FileName);
print("After creating new Spreadsheet::ParseExcel::Stream:\n" . `free
+-m`);
results in
Before creating new Spreadsheet::ParseExcel::Stream:
total used free shared buffers cac
+hed
Mem: 3011 1250 1761 0 2
+177
-/+ buffers/cache: 1071 1940
Swap: 956 177 779
After creating new Spreadsheet::ParseExcel::Stream:
total used free shared buffers cac
+hed
Mem: 3011 2257 753 0 2
+177
-/+ buffers/cache: 2077 933
Swap: 956 177 779
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.