标签:
Netty is an asynchronous event-driven network application framework for rapid development of maintainable high performance protocol servers & clients.
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.
‘Quick and easy‘ doesn‘t mean that a resulting application will suffer from a maintainability or a performance issue. Netty has been designed carefully with the experiences earned from the implementation of a lot of protocols such as FTP, SMTP, HTTP, and various binary and text-based legacy protocols. As a result, Netty has succeeded to find a way to achieve ease of development, performance, stability, and flexibility without a compromise.
参考链接:
文章导读:
1 Netty是什么? 2 Netty的架构 3 Netty的特性 4 Netty的使用 5 Netty源码分析 6 Netty事件驱动模型 7 Netty Pipeline流处理 8 Netty 通用通信API 9 Netty Zero-Copy-Capable Buffer 10 Netty数据流分析 11 Netty VS Mina
标签:
原文地址:http://www.cnblogs.com/xymqx/p/4433806.html