hi
in the below script: use Storable qw(store_fd fd_retrieve); my %position_counts = ('name' => 'rahul'); open(OUT1, ">temp.txt"); store_fd(\%position_counts, *OUT1) || die "can't store to temp.txt\n"; close(OUT1); is it possible to change values of my hash "%position_counts" stored in the file without retrieving it back using "fd_retrieve"? if its not possible can you tell me how to store a huge hash data to a file or dbm and edit it without retrieving it back in perl. Is "storable" module the best option? Thanking you Philge