学习圣思园Netty笔记,个人理解 2.netty宏观理解-本节内容: 1.阶段性事件驱动,一个请求分为若干阶段处理,每个阶段根据情况合理分配线程去处理,各阶段间通信采用异步事件驱动方式。 2.netty5废弃原因,ForkJoinPool使netty开发复杂且性能提升不高。 3.netty大纲深度解读--本节内容: 了解google protobuf:Protocol Buffers\thrift\http\websocket这些概念 书籍推荐netty in action 4.项目环境搭建秘Gradle配置--本节内容 学习方法:先对整体了解,再去研究局部 Gradle:简洁,强大,灵活 推荐使用 Gradle安装方法: 1. 下载 2.设置环境变量 For running Gradle, firstly add the environment variable GRADLE_HOME. This should point to the unpacked files from the Gradle website. Next add GRADLE_HOME/bin to your PATH environment variable. Usually, this is sufficient to run Gradle. 5.Netty执行流程分析与重要组件介绍--本节内容