Kwissle

My real-time quiz battle game Kwissle.com

Crosstips.org

My fun Crossword solver project. Crosstips.org & Krysstips.se

Kung Fu

Fujian White Crane Kung Fu

Photos

Photoalbum, both old and new.

Twitter

Follow me on Twitter

Contact me

My contact details and how to contact me.

 

KungFuPeople.com
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com


Mobile version of this page Mobile version of this page


 
Python

To JSON, Pickle or Marshal in Python


8th of May 2009

To JSON, Pickle or Marshal in Python I was reading David Cramer's tip to use JSONField in Django to be able to store arbitrary fields in a SQL database. Nice. But is it fast enough? Well, I can't answer that but I did look into the difference in read/write performance between simplejson, cPickle and marshal.

Only reading:

 JSON 0.00593531370163
 PICKLE 0.0109532237053
 MARSHAL 0.00413788318634

Reading and writing:

 JSON 0.0434390544891
 PICKLE 0.0289686655998
 MARSHAL 0.00728442907333

Clearly marshal is faster but to quote the documentation:

"Warning: The marshal module is not intended to be secure against erroneous or maliciously constructed data. Never unmarshal data received from an untrusted or unauthenticated source."

Clearly simplejson is a very fast reader and the JSON format has the delicious advantage that it's "human readable" (compared to the others).

NOTE! I spent about 5 minutes putting together the script and about 10 minutes writing this so feel free to doubt it's scientific accuracy.

Also, just because JSON wrote slowest here doesn't mean it's slow. Look at this code for example:

 >>> import simplejson
 >>> d=simplejson.load(open('classes.json'))
 >>> len(open('classes.json').read())
 114254
 >>> from time import time
 >>> def test():
 ...     t0=time(); simplejson.dump(d, open('/tmp/write.json','w')); t1=time()
 ...     return t1-t0
 ... 
 >>> test()
 0.06772303581237793
 >>> test()
 0.076719999313354492
 >>> test()
 0.081094026565551758

That's right! Less than a tenth of a second to write more than 100Kb of data.



Comment

Marius Gedminas - 8th May 2009  [«« Reply to this]
By the way, the same security warning applies to Pickle/cPickle: if you can supply arbitrary input, you can execute arbitrary code.

Marshal is also unsafe for long-term data storage: the format is intentionally undocumented and may change between Python versions.
Karl - 8th May 2009  [«« Reply to this]
You're including disk access and whatnot in your speed comparison. Using dumps and loads would probably be more indicative.

This prompted me to speed test between cJSON and simplejson because I'd heard that cJSON was faster. Turns out that it's faster on reads and slower on writes:

raw length: 5182477
simplejson: {'write': 0.29880690574645996, 'read': 0.37422609329223633}
cjson: {'write': 0.37676501274108887, 'read': 0.21609997749328613}

That's an average of 10 runs for the encoding/decoding speed to a string for a 5MB array of 21k json objects on a 2.2GHz MBP.
Peter Hoffmann - 9th May 2009  [«« Reply to this]
See http://kbyanc.blogspot.com/2007/07/python-serializer-benchmarks.html for a similar comparison. With cjson you are in the range of pickle with the adventage of a readable format. And If you want to save space you can just zip the content before saving.
John Paulett - 11th December 2009  [«« Reply to this]
Good post! One point is that marshal & (c)pickle can handle more complex object graphs than what the standard JSON modules (simplejson, demjson, cjson, etc.) can encode. For instance json will not handle a list of arbitrary classes. A library I work on, jsonpickle (http://jsonpickle.github.com), can help encode complex object graphs into JSON.
 
Name:
Email:
hide my email address.

Your email address will be encoded to prevent email-extraction spiders from reading it so you won't get spammed if you decide to show your email address.