Re: [PATCH perlfaq3.pod] and a question about it.
Jonathan Stowe [Tue, 26 Jun 2001 20:53:40 +0000 (21:53 +0100)]
Message-ID: <Pine.LNX.4.33.0106262052060.10849-100000@orpheus.gellyfish.com>

p4raw-id: //depot/perl@10976

pod/perlfaq3.pod

index dabe568..bb95629 100644 (file)
@@ -413,7 +413,9 @@ can often make a dramatic difference.  Jon Bentley's book
 on optimization, too.  Advice on benchmarking boils down to: benchmark
 and profile to make sure you're optimizing the right part, look for
 better algorithms instead of microtuning your code, and when all else
-fails consider just buying faster hardware.
+fails consider just buying faster hardware.  You will probably want to
+read the answer to the earlier question ``How do I profile my Perl programs?''
+if you haven't done so already.
 
 A different approach is to autoload seldom-used Perl code.  See the
 AutoSplit and AutoLoader modules in the standard distribution for