MessagePack::Copy
Fast copy msgpack objects from IO to IO, without full parse, without create temp objects
this is usefull for streaming apis
MessagePack::Copy.new(io1, io2).copy_objects(1)
This is from 40% to 700% faster than MessagePack::IOUnpacker.new(io1).read.to_msgpack(io2)
Constructors
Instance methods
copy_object
Sourcecopy_objects(n)
Sourceio_dst
Sourceio_src
Source