I've had the understanding that simplejson is much faster than the native json in Python, such as this thread: `json` and `simplejson` module differences in Python
However, I was just thrown for a loop when I read in App Engines documentation that with Python 2.7
Uses the native JSON library, which is much faster than simplejson.
http://code.google.com/appengine/docs/python/python27/newin27.html
So now I'm confused. Everywhere else it seems to say simplejson is better, but now App Engine with Python 2.7 says the native is faster. What gives?

simplejson. It's also possible that Google is using some native implementation instead of the default module (sort of like how they renamecPickletopickle). Mere speculation on my part, though ;-) – Cameron Nov 19 '11 at 4:46