有什么方法可以立即释放绑定的套接字吗?
我正在开发一个应用程序服务器,在此期间我不断地编辑-重新编译-重新运行代码。不幸的是,中断代码后,内核(Ubuntu 11.10)并没有立即回收绑定到套接字的端口,因此我必须等待几分钟才能重新运行。
我认为在中断处理程序中正确关闭套接字可以解决问题,但显然没有效果。
有没有什么方法可以加快这个过程,从而加快开发周期?
I’m developing an application server, during which I constantly edit–recompile–rerun the code. Unfortunately, after interrupting the code, the kernel (Ubuntu 11.10) does not immediately reclaim the port bound to the socket, so I have to wait several minutes until I can rerun.
I thought that properly closing the socket in an interrupt handler solves the problem but it apparently has no effect.
Is there any way to speed up the process and therefore the development cycle?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
打开套接字后,在套接字上设置 SO_REUSEADDR 选项。有关详细信息,请参阅此问题。
Set the SO_REUSEADDR option on the socket after opening it. See this question for more information.