检查Java中服务器套接字队列中的连接数
我有一个 Java 程序,它创建一个服务器套接字并接受来自各个客户端的连接。
我有兴趣找出队列中的连接数(等待服务器处理)。我使用了默认构造函数,没有指定 backlog 参数。
在运行时,是否可以知道服务器有多少个待处理连接?
我想实现一个监视进程,它将检查队列的满度,并基于此触发克隆进程以进行负载平衡(以便连接不会被丢弃)。
I have a Java program that creates a server socket and accepts connections from various clients.
I am interested in finding out the number of connections that are in queue (waiting to be processed by the server). I have used the default constructor without specifying the backlog parameter.
At runtime, is it possible to know how many connections are pending for the server?
I want to implement a monitor process, which will check how full the queue is and based on that, trigger clone processes for load balancing (so that the connections are not dropped).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据这个答案,你不能。
According to this SO answer, you can't.