views:

40

answers:

1

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

+1  A: 

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!

Noldorin
yes cpickle is the best but i cannot use c extensions in AppEngine where i am deploying :)
PanosJee
Ah, that kind of sucks. Just test pickle and see if it's good/efficient enough for your purposes, perhaps? I love how easy it is to use.
Noldorin