in reply to Persistent data storage
Take a look at Tie::File. That module allows for functionality such that you can treat the lines in a file the same as you would an array. No, it does not load the entire file into memory.
The code above gives you a file that has this for contents:#!/usr/bin/perl -w ##################################################### use strict; use Tie::File; tie my @ry,"Tie::File","myfile.txt"; my @data=( [ 'apple',12.2,'red' ], [ 'bannana', 33.3,'yellow'], [ 'pineapple', 17.2,'green'] ); foreach my $dat(@data){ push @ry,join(",",@{$dat}); } untie @ry; tie @ry,"Tie::File","myfile.txt"; my $t= $ry[1]; $ry[1]=$ry[0]; $ry[0]=$t; untie @ry;
bannana,33.3,yellow apple,12.2,red pineapple,17.2,green
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Persistent data storage
by ssinha (Novice) on Aug 17, 2012 at 06:20 UTC | |
by ssinha (Novice) on Aug 17, 2012 at 07:13 UTC | |
by ssinha (Novice) on Aug 17, 2012 at 07:26 UTC | |
by blue_cowdawg (Monsignor) on Aug 21, 2012 at 13:31 UTC |