开发者

Faster Deserialization in Python

开发者 https://www.devze.com 2023-01-06 05:52 出处:网络
开发者_如何学编程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)
开发者_如何学编程

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!

0

精彩评论

暂无评论...
验证码 换一张
取 消