Skip to content

gugod/Data-MessagePack-Stream

 
 

Repository files navigation

Data::MessagePack::Stream Build Status

Yet another msgpack streaming deserializer for Perl.

SYNOPSIS

use Data::Dumper;
my $unpacker = Data::MessagePack::Stream->new;

while (read($fh, my $buf, 1024)) {
    $unpacker->feed($buf);

    while ($unpacker->next) {
        print Dumper($unpacker->data);
    }
}

DESCRIPTION

Data::MessagePack::Stream is streaming deserializer for MessagePack.

This module is alternate for Data::MessagePack::Unpacker. Unlike original unpacker, this module support internal buffer and it's possible to handle streaming data correctly.

About

yet another msgpack stream unpacker for Perl

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C++ 84.2%
  • Shell 6.5%
  • C 4.9%
  • Makefile 3.3%
  • CMake 0.5%
  • HTML 0.4%
  • Other 0.2%