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
2010-07-08 07:45:17
yes cpickle is the best but i cannot use c extensions in AppEngine where i am deploying :)
PanosJee
2010-07-08 19:47:03
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
2010-07-08 23:22:27