Top "Netty" questions

An open source asynchronous event-driven network application framework written in Java.

How does vert.x achieve superior performance compared to Netty?

The recent TechEmpower performance benchmarks have been showing vert.x on top of Netty, sometimes by a large amount. According …

performance netty vert.x
How to convert a netty ByteBuf to a String and vice versa

Is there a way to convert a netty ByteBuf to a String and vice versa? public String toString(ByteBuf b){ //…

java encoding netty decoding
java.lang.NoClassDefFoundError: io/netty/handler/ssl/SslContextBuilder

I am trying to implement relayrides/pushy, but am getting the following runtime error: Jun 28, 2017 2:06:58 PM com.turo.pushy.apns.…

java netty maven-dependency
Java: Faster alternative to String(byte[])

I am developing a Java-based downloader for binary data. This data is transferred via a text-based protocol (UU-encoded). For the …

java performance networking profiling netty
What is the difference between Vert.x and Netty?

What is the difference between Vert.x and Netty? Why should one ever prefer Netty over Vert.x? Both of …

java multithreading netty nio vert.x
Changing Netty 4 HTTP File Server example to use ChunkedStream instead of ChunkedFile

I'm trying to wrap my head around Netty 4 way of implementing a HTTP Server that serve HttpResponses bodies using chunked …

http netty chunked-encoding http-chunked
Trouble with Netty IdleStateHandler - am I testing it the wrong way?

I have a toy Netty server and am trying to send heartbeat messages to clients when nothing has happened on …

java jboss network-programming netty heartbeat
Does gRPC server spin up a new thread for each request?

I tried profiling a gRPC java server. And i see the below set of thread pools majorly. grpc-default-executor Threads : Created 1 …

server netty grpc grpc-java
Java Netty Unknown SSL content type error

I'm trying to write a HTTP client using Netty 5.0.0.Alpha2 to connect to a proprietary server. I can only describe …

java ssl netty starttls
Netty 4 - EventLoopGroup - EventLoop - EventExecutor - Thread affinity

I am studying the Netty 4.0.0.Alpha5 code in order to find out how threading is handled. I also read the …

netty