--- CBOR-XS/XS.pm 2013/10/29 15:56:31 1.13 +++ CBOR-XS/XS.pm 2013/10/30 10:11:04 1.17 @@ -48,6 +48,14 @@ often compresses better than CBOR though, so if you plan to compress the data later you might want to compare both formats first). +To give you a general idea about speed, with texts in the megabyte range, +C usually encodes roughly twice as fast as L or +L and decodes about 15%-30% faster than those. The shorter the +data, the worse L performs in comparison. + +As for compactness, C encoded data structures are usually about +20% smaller than the same data encoded as (compact) JSON or L. + The primary goal of this module is to be I and the secondary goal is to be I. To reach the latter goal it was written in C. @@ -60,7 +68,7 @@ use common::sense; -our $VERSION = 0.06; +our $VERSION = 0.08; our @ISA = qw(Exporter); our @EXPORT = qw(encode_cbor decode_cbor);