Scenario: I 'tie' file 'myFile' to array '@tieArray'. I make modification to some records of '@tieArray'. Now before 'untie' the file I write each record of '@tieArray' to a new file 'tempFile'. In the end I untie '@tieArray'.

Now the contents of file 'myFile' & 'tempFile' should be same. But they are different. Some of the modifications I did on '@tieArray' are not reflected in 'tempFile'.

The problem is fixed when I increase the value of 'memory' parameter to 4Mib from its default value of 2Mib i.e

tie @tieArray, 'Tie::File', "myFile", memory => 4000000;

Can anybody suggest what is the problem in original scenario & how increasing the buffer size to 4Mib fixed this problem?

Note:

1)I am getting this problem when I tie huge files i.e 40 - 50 Mb. For small Files I don't get this kind of problem.

2) Modifications that I made to @tieArray are something like this:

$tieArray[100] .= "\n\nMy new inserted lines";


In reply to Query regarding 'Tie' file by Harman

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.