简介
在Netty官方网站中,有这么一段对Netty的概述:
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.
简言之,Netty是一款异步的,事件驱动的,网络应用程序框架,用于快速开发高可用的,高性能的网络协议服务器和客户端。Netty吸取了许多网络协议的开发经验,并基于Java NIO,经过精心设计,成功找到了一种方式保证易于开发的同时还确保了其应用的性能,稳定性和伸缩性。
本博客文章为原创内容,版权归作者所有。未经作者书面许可,不得擅自转载。如需转载,请注明原文链接和作者信息。违者将追究法律责任。