msgpack / msgpack-ruby

MessagePack implementation for Ruby / msgpack.org[Ruby]
http://msgpack.org/
Apache License 2.0
758 stars 117 forks source link

Implement Factory::Pool #packer and #unpacker methods #325

Closed casperisfine closed 1 year ago

casperisfine commented 1 year ago

This make pooling usable when simple dump/load isn't.

e.g.

pool.packer do |packer|
  packer.write(1)
  packer.write(2)
  packer.full_pack
end

@peterzhu2118 @felix-d