On Tue, Apr 27, 2010 at 12:38 PM, sheila miguez <[email protected]> wrote:
> I wasn't expecting a good compression > ratio for protobuf messages since they are decently packed already, > but was happy to see that result. > Yep, Protobufs are a compact encoding, but compression can still work well depending on your data set. For example, if you load your message with compressible strings or other repetitive data, the protobuf encoding itself is not going to actually compress them, so adding zlib on top will help. -- You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/protobuf?hl=en.
