vote up 7 vote down star

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?)

flag

66% accept rate
Try this: import marshal; l=[]; l.append(l); c=marshal.dumps(l) – ΤΖΩΤΖΙΟΥ Nov 30 '08 at 21:48

2 Answers

vote up 6 vote down

I think, it's explained in the documentation: 13.5 marshal -- Internal Python object serialization. Notably,

Warning: The marshal module is not intended to be secure against erroneous or maliciously constructed data. Never unmarshal data received from an untrusted or unauthenticated source.

and

Warning: Some unsupported types such as subclasses of builtins will appear to marshal and unmarshal correctly, but in fact, their type will change and the additional subclass functionality and instance attributes will be lost.

link|flag
1  
Warning The pickle module is not intended to be secure against erroneous or maliciously constructed data. Never unpickle data received from an untrusted or unauthenticated source. – Brandon Thomson Mar 12 at 22:23
vote up 4 vote down

I'm assuming you don't have access to the documentation.

Key points.

  1. Marshall is to read and write Python values in a binary format.

  2. Marshall is not a general persistence and transfer of Python objects through RPC calls, see the modules pickle and shelve.

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.