I'm working on an application that needs to hold a lot of very simple text /[ACTGN]{300}/ x 1,000,000 in memory.
However, Perl seems to very stubbornly insist on using 32 bits for each character. As a result, when I load a 100MB file, 400MB of memory is used. See for yourself:
/usr/bin/time -f "%MKb" -- perl -e "'A' x 1024 x 1024 x 100"
Is there any way to store this data in a more economical format? pack() doesn't help at all. I've tried a lot of hideous hacks to no avail. Any tricks or tips would be greatly appreciated.
One requirement though: I want to only use Perl core modules since I'll be distributing this application to people who may not know how to install additional modules. So Bit::Vector is out.
Thanks in advance,
-Dan
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.