-
Notifications
You must be signed in to change notification settings - Fork 1k
Perl (ES)
Busindre edited this page Nov 3, 2016
·
1 revision
De forma predeterminada, Perl utiliza buffers para cualquier salida enviada a STDOUT y STDERR. Por lo tanto si su programa escribe un mensaje, este puede que no sea enviado de forma inmediata.
Para controlar esto, se puede activar el auto-flushing al comienzo de su programa:
use IO::Handle;
STDOUT->autoflush(1);
No se recomienda utilizar la antigua manera de hacerlo:
$|++;
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