行业经典论文汇总(不定期更新)

这里列出的是个人认为的比较经典的论文,每篇都深度影响了整个技术圈,值得细细品味,放在这里做一下标记。先给出英文连接,有空将我认为翻译的比较好的中文连接列出。

 

Dan Kegel: The C10K Problem

http://www.kegel.com/c10k.html

著名的C10K问题

 

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

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

对C10K问题的回应

 

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

http://www.cs.wustl.edu/~schmidt/PDF/proactor.pdf

对C10K问题的回应

 

SEDA: An Architecture for Highly Concurrent Server Applications

http://www.eecs.harvard.edu/~mdw/papers/seda-sosp01.pdf

对C10K问题的回应

 

Roy Thomas Fielding: Architectural Styles and the Design of Network-based Software Architectures

http://www.ics.uci.edu/~fielding/pubs/dissertation/top.htm

提出了REST这种软件架构风格

 

MapReduce

http://research.google.com/archive/mapreduce.html

GFS:

http://research.google.com/archive/gfs.html

Bigtable:

http://research.google.com/archive/bigtable.html

Google分布式领域三大经典论文,大名鼎鼎,不必多说了吧

 

Hashed and Hierarchical Timing Wheels: data structures to efficiently implement a timer

http://www.cs.columbia.edu/~nahum/w6998/papers/sosp87-timing-wheels.pdf

George Varghese 和 Tony Lauck 1996 年的论文,提出了一种定时轮的方式来管理和维护大量的timer调度

 

你可能感兴趣的:(更新)