Faster Deserialization in Python
What do you think is the fastest deserialization method? Pickle? YAML? or JSONPickle?
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!
精彩评论