使用中文翻译此英文标题:“在App Engine上使用Python 2.7,simplejson vs native json,谁更快?”

2024-09-28 19:08:59 发布

您现在位置:Python中文网/ 问答频道 /正文

我已经了解到simplejson比Python中的本地json快得多,比如这个线程: What are the differences between json and simplejson Python modules?

然而,当我阅读使用Python2.7的应用程序引擎文档时,我被抛出了一个循环

Uses the native JSON library, which is much faster than simplejson.

http://code.google.com/appengine/docs/python/python27/newin27.html

所以现在我很困惑。其他地方似乎都说simplejson更好,但是现在使用Python 2.7的App Engine说本机更快。给什么?


Tags: andthe文档引擎modulesjson应用程序between