in reply to Is it possible to alter a flat file in memory?

Some operating systems support "memory mapped files," and there may indeed be a module which offers an API to such features in Perl.

But memory mapped files are just glossing over the details of the inevitable: the only way to change some bits on a drive is to read the drive, modify the bits, and write the bits onto the drive. What the API looks like doesn't really change that.

--
[ e d @ h a l l e y . c c ]

  • Comment on Re: Is it possible to alter a flat file in memory?