gpt4 book ai didi

node.js - 休息 API : nodejs vs python

转载 作者:搜寻专家 更新时间:2023-10-31 22:48:51 25 4
gpt4 key购买 nike

我想为当前带有 mongodb 后端数据库的 PHP 应用程序制作 Restful API。

NodeJS (express) 与 Python (web.py),哪个性能更好?

最佳答案

所以我找到了一些speed test article .它是用俄语写的,所以你可能看不懂。但是您可以查看示例代码。

这里是简单的测试结果和解释的简短翻译:

Python、 Tornado

ab -n 10 -c 10 http://127.0.0.1:8888/
Time taken for tests: 20.078 seconds

Node.js

ab -n 10 -c 10 http://127.0.0.1:8000/
Time taken for tests: 2.007 seconds

没有测试用电脑的描述,但没关系。

Node.js 更快的原因是它使用非阻塞事件循环,而 Python 的 time.sleep 是阻塞的。

2021 年更新

由于 Python 已收到 asyncio ,如果没有 asyncio 测试,文章中的基准测试是不完整的。

关于node.js - 休息 API : nodejs vs python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6993389/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com