in reply to Re^9: write to Disk instead of RAM without using modules
in thread write to Disk instead of RAM without using modules

My code is amenable for both, storing the data of a file in memory and working sequentially through a file.

Note that "storing a file in memory" is easily achieved using an array as storage and reading each line from a file sequentially and storing it in the array.

  • Comment on Re^10: write to Disk instead of RAM without using modules