What do you think is the fastest deserialization method? Pickle? YAML? or JSONPickle?
1 Answer
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!
cPickle(use that instead ofpickle!), be sure to use theHIGHEST_PROTOCOL.