
Do you train Kung Fu?
Or know someone who does?
Then check out KungFuPeople.com
Mobile version of this pageNever seen before Google Server Error
Next:
Most unusual letters in English language
Related blogs
Python optimization anecdoteSpellcorrector 0.2
How I made my MongoDB based web app 10 times faster
jsonpprint - a Python script to format JSON data nicely
Related by category
To JSON, Pickle or Marshal in Python
8th of May 2009
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:
PICKLE 0.0109532237053
MARSHAL 0.00413788318634
Reading and writing:
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:
>>> 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
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.
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.
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.


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.