From this question and my own benchmarks it seems that the marshal module is about 20-30x faster than cPickle. Why is this so? What functionality does cPickle offer over marshal that justifies this? (Another way of putting it - why not always use marshal? Why do both of these modules exist?)
|
|
|||
|
|
|
I think, it's explained in the documentation: 13.5 marshal -- Internal Python object serialization. Notably,
and
|
||||
|
|
|
I'm assuming you don't have access to the documentation. Key points.
So, it appears to me that (a) marshal is binary in nature, and (b) pickle is character in nature. Probably that's why marshal is faster. Oh, here's a nugget: "Details of the format are undocumented on purpose". So (c) marshal is allowed to cut corners or optimize in obscure ways. |
||
|
|
