netty
Each netty worker wakes up 2 times per second. Why?
N开发者_运维知识库ioWorker.run calls SelectorUtil.select that does select with 500 ms timeout.[详细]
2023-03-03 05:47 分类:问答Difference between channel.isOpen() and channel.isConnected() in Netty?
Netty defines two methods for channels: isOpen() and isConnected(), but the Javadoc does not really explain the difference between both and it is not self-explanatory. Ca开发者_StackOverflow社区n anyo[详细]
2023-02-27 04:15 分类:问答How to use Netty from inside a web app - steps to proper configuration
I\'m trying to setup Netty to run embedded in my web application. I have found the following document: http://docs.jboss.org/netty/3.2/api/org/jboss/netty/channel/socket/http/package-summary.html#pa[详细]
2023-02-27 00:47 分类:问答Question about Netty's Channel.write(Object) signature - Unclear documentation
The Netty library (written in Java) defines the following write method in the channel interface: ChannelFutu开发者_如何学编程re write(Object message)[详细]
2023-02-25 12:53 分类:问答jvm conf for normal gc at high load
I have server application based on Netty. It decode message (from json) and send开发者_Go百科 it back to the client (simple echo). When i have a lot of messages send from one client (more than 15k/sec[详细]
2023-02-22 15:01 分类:问答RTSP Media Server Using Netty
After carrying out some research I have found out that an RTSP media server for develivering video and audio can be implemeneted in java using Netty. After consulting the web site and veiwing the docu[详细]
2023-02-21 21:19 分类:问答Send ProtocolBuffer Message.Builder to another machine via RMI
I have the following pesudocode: public void sendPB(ObjectId userId, Messa开发者_开发技巧ge.Builder mb) {[详细]
2023-02-21 02:13 分类:问答How Netty uses thread pools?
Can you please explain how Netty uses thread pools to work? Do I understand correctly, that there are two kinds of thread-p开发者_开发问答ools: boss and worker. Boss ones are used to do I/O and worker[详细]
2023-02-20 18:12 分类:问答Connection pooling in Netty
I\'m trying t开发者_如何学运维o build a reverse proxy with Netty, and I\'d like to keep a pool of open sockets to the backend servers, instead of every incoming socket requiring a new socket from the[详细]
2023-02-20 06:49 分类:问答Highly concurrent HTTP with Netty and NIO
I am working through the example Netty HTTP Client code in order to make http requests within a concurrent, thre开发者_如何学Pythonaded environment.[详细]
2023-02-19 23:02 分类:问答