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.
我想在 Nodejs 中编写一个 API,如果执行时间超过特定时间,它将返回错误,否则将正常进行。怎么做??问候, 阿卜杜勒
节点线程需要通过清除事件循环上运行的所有内容来进行协作,然后通过返回自然终止。因此,只需停止监听请求、关闭句柄等。您可以使用process._getActiveRequests并process._getActiveHandles查看是什么使事件循环保持活动状态。
process._getActiveRequests
process._getActiveHandles
您也可以通过调用 OS api 来突然中断节点线程,但这会泄漏大量垃圾,直到您退出进程,因此在您需要退出进程以释放泄漏的资源之前,您无法多次启动/重新启动节点.