现代服务器底层奠基(SEDA+Reactor/Proactor+epoll/kqueue )

SEDA(Staged Event-Driven Architecture)

   SEDA- An Architecture for Well-Conditioned, Scalable Internet Services  https://dl.acm.org/doi/pdf/10.1145/502034.502057

类似 actor model(akka和erlang)
    Thread-based concurrency: Threaded server design
    Bounded thread pools:
    Event-driven concurrency

Reactor/Proactor(Pattern)

  Reactor An Object Behavioral Pattern for Demultiplexing and Dispatching Handles for Synchronous Events

    http://www.dre.vanderbilt.edu/~schmidt/PDF/reactor-siemens.pdf

[翻译]Reactor An Object Behavioral Pattern for Demultiplexing and Dispatching Handles for Synchronous Events  https://www.jianshu.com/p/36b58ef2ff23
Reactor Pattern论文学习《An Object Behavioral Pattern for Concurrent Event Demultiplexing and Dispatching https://zhuanlan.zhihu.com/p/464159297
Reactor模式详解 https://www.cnblogs.com/dirt2/p/5590320.html


   Proactor An Object Behavioral Pattern for Demultiplexing and Dispatching Handlers for Asynchronous Events

   https://www.dre.vanderbilt.edu/~schmidt/PDF/Proactor.pdf

Proactor https://www.zhihu.com/question/26943938
网络编程:Reactor与Proactor的概念与应用  https://zhuanlan.zhihu.com/p/349778884

epoll/kqueue

epoll   epoll_百度百科

【epoll】epoll使用详解(精髓)--研读和修正 https://blog.csdn.net/bandaoyu/article/details/89531493
深入理解 Linux 的 epoll 机制 https://mp.weixin.qq.com/s?__biz=MzU0OTE4MzYzMw==&mid=2247515011&idx=2&sn=3812f80dd80bb27340d5849df8d1cec0&chksm=fbb1327dccc6bb6bfd5ab7f9da23220ade44e88e2f8d2506b7e0868bb84665a95f026eddb82d&scene=27
 

  Kqueue- A generic and scalable event notification facility 
   kqueue paper: https://people.freebsd.org/~jlemon/papers/kqueue.pdf

翻译自 (Kqueue: A generic and scalable event notification facility) 这篇论文https://blog.csdn.net/zhongwei_sun/article/details/83967002
https://blog.csdn.net/zhongwei_sun/article/details/83968297
epoll 或者 kqueue 的原理是什么? https://www.zhihu.com/question/20122137/answer/2374456338
[转]高负载高并发应用 参考资料索引  https://www.cnblogs.com/napoleon_liu/archive/2011/04/29/2033051.html

参考: 

System|网络|SEDA Web Server System|网络|SEDA Web Server - 知乎

   SEDA- An Architecture for Well-Conditioned, Scalable Internet Services  https://dl.acm.org/doi/pdf/10.1145/502034.502057
   Kqueue- A generic and scalable event notification facility 
   kqueue paper: https://people.freebsd.org/~jlemon/papers/kqueue.pdf
   reactor-siemens http://www.dre.vanderbilt.edu/~schmidt/PDF/reactor-siemens.pdf
   Proactor https://www.dre.vanderbilt.edu/~schmidt/PDF/Proactor.pdf
   System|IO|Reactor  https://zhuanlan.zhihu.com/p/161159888
   System|IO|Proactor https://zhuanlan.zhihu.com/p/161214505
   System|多路复用IO|Kqueue事件通知 https://zhuanlan.zhihu.com/p/157431765
   System|网络|Naive SEDA实现 https://zhuanlan.zhihu.com/p/162753075
   System|网络|分阶段事件驱动架构SEDA https://zhuanlan.zhihu.com/p/161902784
   System|网络|packet的一生  https://zhuanlan.zhihu.com/p/157909533

Netty透彻讲解 http://www.taodudu.cc/news/show-1601219.html
 Netty4架构总览 https://www.w3cschool.cn/netty_4_user_guide/kxyihozt.html

你可能感兴趣的:(1.1.1.11,通信框架,1.1.1.10,网络与通信,1.1.1.9,Java,C#,服务器,网络协议,tcp/ip,http)