Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Books and articles on Netty [closed]

Tags:

java

netty

Are there some good articles/books about how to use Netty? The documentation is short, and it's not simple for me to learn from the Javadoc.

Thanks

like image 683
manash Avatar asked Jul 06 '12 07:07

manash


People also ask

Who uses Netty?

1.2. 1. Who uses Netty? Netty has a vibrant and growing user community that includes large companies such as Apple, Twitter, Facebook, Google, Square, and Instagram, as well as popular open source projects such as Infinispan, HornetQ, Vert.

Why is Netty so fast?

It supports SSL/TLS, has both blocking and non-blocking unified APIs, and a flexible threading model. It's also fast and performant. Netty's asynchronous, non-blocking I/O model is designed for highly scalable architectures and may allow for higher throughput than an analogous blocking model.

How is Netty non-blocking?

Every IO operation on a Channel in Netty is non-blocking. This means that every operation is returned immediately after the call.

Is Netty a Web server?

Netty is a NIO client server framework which enables quick and easy development of network applications such as protocol servers and clients. It greatly simplifies and streamlines network programming such as TCP and UDP socket server.


2 Answers

Google is much greater then SO when you need to search!

link

EDIT:

link from dzone1

link from dzone2

like image 148
Aleksandr Kravets Avatar answered Sep 16 '22 16:09

Aleksandr Kravets


I have found this tutorial, which is mentioned in the related articles section of the main site useful. Checking the examples provided helps too.

like image 24
assylias Avatar answered Sep 18 '22 16:09

assylias