-
Notifications
You must be signed in to change notification settings - Fork 1k
Perl
Alex Sergeyev edited this page May 30, 2014
·
3 revisions
By default, Perl will buffer any output sent to STDOUT and STDERR. If your program writes a message, it may not get sent immediately.
To handle this, you can enable auto-flushing at the beginning of your program:
use IO::Handle;
STDOUT->autoflush(1);
And there is also (not recommended) ancient way of doing it:
$|++;
The websocketd user guide is a publicly editable wiki. Please contribute!
Getting Started
Reference
Language specific
Advanced: Internals
Spanish Websocket Wiki
Primeros pasos
Referencia
Lenguajes
Avanzado