Concurrency And Server-Side Networking APIs — Part 4
The original article can be found here. Introduction
Read article: Concurrency And Server-Side Networking APIs — Part 414 articles tagged HTTP.
The original article can be found here. Introduction
Read article: Concurrency And Server-Side Networking APIs — Part 4This is part three of an exploration of how concurrency in networking APIs works in Unix-like operating systems and Java technology. This article now looks at the Java equivalents of several C-based server implementations that have been presented. If you haven’t read this series from the beginning,…
Read article: Concurrency And Server-Side Networking APIs — Part 3In the second part of this series we continue to explore how Unix-like operating systems implement the networking API and threading API. In particular, we are supremely interested in how the kernel allows server programs accept incoming connections. Part two explores implementing concurrency in…
Read article: Concurrency And Server-Side Networking APIs — Part 2This article explores how a Sun Hotspot JVM behaves when accepting incoming TCP/IP socket connections. The behavior of native server programs–written in C–are also explored to better understand how concurrency can be achieved. Then, a comparison of how these runtime environments implement…
Read article: Concurrency And Server-Side Networking APIs — Part 1