[Python-Dev] Performance of various marshallers

Skip Montanaro skip@pobox.com (Skip Montanaro)
Mon, 1 Oct 2001 22:21:16 -0500


 >                         encode          decode
 >                         ------          ------
 >     cPickle              1230            149

  Were the cPickle tests run in binary or original flavor?

Setting the binary flag when dumping using cPickle boosts the encode rate to
4450 and the decode rate to 3940.

Skip