求大神指教, 如何写一个全局recover,保证服务不会因为go程里面的panic整个挂掉

ywdhzxf · · 3669 次点击
再来,golang的wiki https://github.com/golang/go/wiki/PanicAndRecover The panic and recover functions behave similarly to exceptions and try/catch in some other languages in that a panic causes the program stack to begin unwinding and recover can stop it. 得了。try catch都成了你说的 “必须要退出程序紧急处理了” 别的不说,panic不recover直接退出? 所以但凡出了错,各种占用的资源的释放也不需要,直接exit?
#25
更多评论
polaris
社区,需要你我一同完善!
没法全局,只能每个 gorouitne 自己 recover 自己。
#1
<a href="/user/polaris" title="@polaris">@polaris</a> 如果不考虑go程的话可以监听, 但是go程里面不知道咋监听...
#2