Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在运行一个带有一些导入类(如 Tweepy 和 PyMongo)的 python 脚本。我遇到了性能问题(也就是 100% 的 CPU 堵塞)。我想知道我的哪些 Python 类是可靠的!
那可能吗?
(在这里详细描述我的问题。)
很可能通过profiler来完成。
分析器基本上运行您的代码并在执行此操作时保存有关它的统计信息。例如,哪些函数调用了哪些函数以及每个调用需要多长时间等。
查看此答案以获取更多信息。