##1.Netty 簡介編程
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. Netty是一個NIO客戶端服務器框架,能夠快速輕鬆地開發網絡協議服務器和客戶端等應用程序。 它極大地簡化和精簡了 網絡編程,如TCP和UDP套接字服務器。 protocol:協議 development:發展,開發 simplifies: 簡化 streamline: 精簡 '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通過精心設計,具備豐富的協議,如FTP, SMTP,HTTP以及各類二進制和基於文本的遺留協議所得到的最佳實踐 maintainability:可維護性 (n) performance: 性能,表演 (Noun) implementation:履行 (Noun) various:各個 (Adjective) legacy:遺產 (Noun) flexibility:靈活性(Noun) stability:穩定性(Noun) compromise:妥協(Noun)
##2.Netty 架構 <img src="https://netty.io/images/components.png" div align=right />promise
##3.Netty Features服務器
1.Unified API for various transport types - blocking and non-blocking socket 適用於各類傳輸類型的統一API 2.Based on a flexible and extensible event model which allows clear separation of concerns 基於靈活且可擴展的事件模型,能夠清晰地分離關注點 3.Highly customizable thread model - single thread, one or more thread pools such as SEDA 4.True connectionless datagram socket support (since 3.1) unified :統一的(Adjective) flexible:靈活的 (Adjective) extensible:擴展的 (Adjective) separation:分割 (Noun) customizable:可定製的(Adjective) Datagram Sockets 數據報套接字
##4.Performance網絡
Better throughput, lower latency Less resource consumption Minimized unnecessary memory copy 更高的吞吐量,更低的延遲 減小資源消耗 最小化沒必要要的內存複製 consumption: 消費(Noun)
##5.Community架構
Release early, release often The author has been writing similar frameworks since 2003 and he still finds your feed back precious! 早發佈,常常發佈 自2003年以來,做者一直在編寫相似的框架,他仍然發現你的反饋很珍貴!