Connecting Tech Pros Worldwide Forums | Help | Site Map

what is Buffer

Newbie
 
Join Date: Oct 2006
Posts: 7
#1: Nov 7 '06
What is buffer .why should i flush it by $| in perl.

miller's Avatar
Moderator
 
Join Date: Oct 2006
Location: San Francisco, CA
Posts: 830
#2: Nov 7 '06

re: what is Buffer


Quote:

Originally Posted by http://perldoc.perl.org/perlvar.html




  • HANDLE->autoflush(EXPR)
  • $OUTPUT_AUTOFLUSH
  • $|
If set to nonzero, forces a flush right away and after every write or print on the currently selected output channel. Default is 0 (regardless of whether the channel is really buffered by the system or not; $| tells you only whether you've asked Perl explicitly to flush after each write). STDOUT will typically be line buffered if output is to the terminal and block buffered otherwise. Setting this variable is useful primarily when you are outputting to a pipe or socket, such as when you are running a Perl program under rsh and want to see the output as it's happening. This has no effect on input buffering. See getc for that. (Mnemonic: when you want your pipes to be piping hot.)



Always try perldoc first for your questions about the internals of perls. It's likely to get you more information. And even more importantly, more accurate information.
Reply