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.
.option(ChannelOption.SO_BACKLOG, 100)
显示在 Netty 4 升级文档中。你能解释一下它的作用吗?
谢谢!
这是一个通过套接字选项确定排队的连接数。
传入连接指示(连接请求)的最大队列长度设置为 backlog 参数。如果队列满时有连接指示到达,则拒绝连接。