(0)Reactor模型Reactor模型是一种经典的线程模型,一般分为三种类型:Reactor单线程模型Reactor多线程模型Reactor主从多线程模型Reactor单线程模型Reactor单线程模型是指所有的IO操作包括acceptor操作和handler操作都由一个线程完成;Netty中R
publicclassRecyclerTest{staticclassWrapRecycler{privatebooleantmp;privatefinalstaticRecycler<WrapRecycler>RECYCLER=newRecycler<WrapRecycler&g
(0)ChannelPipeline的实例ChannelPipeline的使用实例privatevoidconnect(Stringhost,intport){EventLoopGroupgroup=newNioEventLoopGroup();try{Bootstrapb=newBootstrap
(0)内存数据结构内存分级从上到下主要分为:Arena,ChunkList,Chunk,Page,SubPage五级;PooledArena是一块连续的内存块,为了优化并发性能在Netty内存池中存在一个由多个Arena组成的数组,在多个线程进行内存分配时会按照轮询策略选择一个Arena进行内存分配