FAQ patch from mjd regarding Tie::File.
Jarkko Hietaniemi [Thu, 11 Apr 2002 20:41:23 +0000 (20:41 +0000)]
p4raw-id: //depot/perl@15868

pod/perlfaq5.pod

index 4030824..521cb6f 100644 (file)
@@ -757,11 +757,12 @@ you see someone do this:
 
     @lines = <INPUT>;
 
-you should think long and hard about why you need everything loaded
-at once.  It's just not a scalable solution.  You might also find it
-more fun to use the standard DB_File module's $DB_RECNO bindings,
-which allow you to tie an array to a file so that accessing an element
-the array actually accesses the corresponding line in the file.
+you should think long and hard about why you need everything loaded at
+once.  It's just not a scalable solution.  You might also find it more
+fun to use the standard Tie::File module, or the DB_File module's
+$DB_RECNO bindings, which allow you to tie an array to a file so that
+accessing an element the array actually accesses the corresponding
+line in the file.
 
 You can read the entire filehandle contents into a scalar.