We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
像apache这样的服务器,是使用多线程响应多用户请求,当某个请求的线程上抛出的异常没被捕获,只会影响当前这个线程,不会影响其他请求。
类似于nginx的主从模式,主线程调度任务,工作线程执行任务
由于一下原因,进程挂掉后需要重启
The text was updated successfully, but these errors were encountered:
js是基于回调函数实现的异步编程 async可以进程异步流程的控制
Sorry, something went wrong.
No branches or pull requests
健壮性
捕获异常
很好用,但是无法捕获异步任务中的错误
能捕获所有异常,但是会丢失堆栈信息
能够捕获异步中的异常,但是不稳定
阻止异常
异步报错作为回调的第一个参数
cluster多线程架构
守护进程
由于一下原因,进程挂掉后需要重启
The text was updated successfully, but these errors were encountered: