Plack::TempBuffer.3pm

Langue: en

Version: 2010-03-30 (ubuntu - 24/10/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Plack::TempBuffer - temporary buffer to save bytes

SYNOPSIS

   my $buf = Plack::TempBuffer->new($length);
   $buf->print($bytes);
 
   my $size = $buf->size;
   my $fh   = $buf->rewind;
 
 

DESCRIPTION

Plack::TempBuffer is a buffer class to store arbitrary length of byte strings and then get a seekable filehandle once everything is buffered. It uses PerlIO and/or temporary file to save the buffer depending on the length of the size.

SEE ALSO

Plack Plack::Request