-
I'm using a fairly simple RxNetty client:
``` java
public Service(String host, int port, int maxConnection) {
endpoint = RxNetty
. newHttpClientBuilder(host, port)
…
-
The current code for allocating buffers for large transport messages is needlessly complicated and heavy-weight, making large allocations inefficient today and blocking possible optimisations.
We u…
-
ByteBuf should increase capacity using a golden ration eg 1.5 a-la ArrayList, instead of using the next power of 2 capacity to reduce the wasted space.
-
### Expected behavior
expected to process `PING` frames to check the client is still active
### Actual behavior
when empty frame (just with \n symbol) is received `StompSubframeDecoder.decode` th…
-
Lately I have been seeing this error logged more often in our production server
`2024-09-30T23:54:48.115 [redisson-clustered-netty-1-14] ERROR io.netty.util.ResourceLeakDetector - [Context: user_i…
-
有个疑问:encode会写入UdpAttachment,但是接收方decode数据包时又不关心发送方写入的UdpAttachment,所以encode那里是不是去掉UdpAttachment?
https://github.com/zfoo-project/zfoo/blob/5b493036b0354ccbbe270b1b07f475571fcc0828/net/src/main/java/c…
-
Expected behaviour: The promise for a write should be completed only once the write makes it to the network
Actual behaviour: Buffering encoders that extend `MessageToByteEncoder`, most notably Lz4…
-
[nioEventLoopGroup-2-1] WARN io.netty.util.ReferenceCountUtil - Failed to release a message: DatagramPacket(/0.0.0.0:6000 => /127.0.0.1:64272, PooledUnsafeDirectByteBuf(freed))
io.netty.util.IllegalR…
-
Having troubles getting ssl to work with HttpRequestTemplate.
- First of all, simply using a "https" url does not make the client use port 443
- Setting CommonClientConfigKey.IsSecure, Boolean.TRUE in…
-
In order to test my specific http tasks I would like to know whether they configure the HttpClientRequest properly, e.g. which headers are set, which query, uri, etc.
There for it would be quite handy…