PanosJee
PanosJee

Reputation: 3866

Faster Deserialization in Python

What do you think is the fastest deserialization method? Pickle? YAML? or JSONPickle?

Upvotes: 0

Views: 731

Answers (1)

Noldorin
Noldorin

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

Related Questions