如何加快 Python 中 simplejson 的速度?
simplejson 很慢。我希望它快点。我怎样才能实现这个目标?
simplejson is slow. I wish it to be fast. How might I achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
simplejson 很慢。我希望它快点。我怎样才能实现这个目标?
simplejson is slow. I wish it to be fast. How might I achieve this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
simplejson 内置了用 C 编写的加速模块。
确保它已编译。
(例如,检查是否有 /usr/local/lib/python2.6/dist-packages/simplejson-2.2.1-py2.6-linux-i686.egg/simplejson/_speedups.so 文件)
simplejson has built in speedups module writen in C.
Make sure it's compiled.
( For example, check if there is /usr/local/lib/python2.6/dist-packages/simplejson-2.2.1-py2.6-linux-i686.egg/simplejson/_speedups.so file )
看看 cjson。
Have a look at cjson.
如果您可以更新到至少 python 2.6,则可以使用标准 lib
json
模块,这会更快,因为它有一些加速。http://docs.python.org/library/json.html
If you can update to at least python 2.6, you can use the standard lib
json
module, which will be faster since it has some speedups.http://docs.python.org/library/json.html