--- CBOR-XS/XS.pm 2013/10/29 20:59:16 1.14 +++ CBOR-XS/XS.pm 2013/10/29 22:04:52 1.16 @@ -48,10 +48,13 @@ 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, 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. +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. @@ -65,7 +68,7 @@ use common::sense; -our $VERSION = 0.06; +our $VERSION = 0.07; our @ISA = qw(Exporter); our @EXPORT = qw(encode_cbor decode_cbor);