Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Only for novice monks too lazy to read dominus's suffering from buffering:

from perlvar:

HANDLE->autoflush(EXPR) $OUTPUT_AUTOFLUSH # need to use English at the start of your module $| If set to nonzero, forces a flush right away and after every write + or print on the currently selected output channel. Default is 0 (reg +ardless of whether the channel is really buffered by the system or no +t; $| tells you only whether you've asked Perl explicitly to flush af +ter each write). STDOUT will typically be line buffered if output is +to the terminal and block buffered otherwise. Setting this variable i +s 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 in the perlfunc manpage for that. (Mnemonic: when you want your +pipes to be piping hot.)
Some simple code:
#see also http://perl.plover.com/FAQs/Buffering.html use strict; use warnings; #prints, waits a second, prints for (1..3) { sleep 1; print "$_\n"; } #without the newline, waits the entire time and then prints the whole +thing. for (1..3) { sleep 1; print "$_"; } $| = 1; #now it works for (1..3) { sleep 1; print "$_"; } #you might want to go back to the default behavior now. $| = 0;

Considered (dvergin): Author requests this be listed on Tutorials page. What say you all?
Unconsidered (holli): Enough Keep Votes (Keep/Edit/Delete: 20/21/1)


In reply to The extremely simple buffering tutorial (really just an example) by tphyahoo

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-25 10:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found