Reputation: 3866
What do you think is the fastest deserialization method? Pickle? YAML? or JSONPickle?
Upvotes: 0
Views: 731
Reputation: 147340
I'd imagine cPickle would be the fastest method of serialisation, though it's just an (educated) guess. It's written in pure C, with Python bindings, and uses a binary format for storing objects, thus should be pretty fast!
Upvotes: 1