From f941b00a8a6dcacdc961a1bdcfd67f3f053f1d91 Mon Sep 17 00:00:00 2001 From: GitFuture <752736341@qq.com> Date: Wed, 11 Oct 2017 14:29:13 +0800 Subject: [PATCH] Translating... Concurrent servers -2 --- sources/tech/20171004 Concurrent Servers Part 2 - Threads.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sources/tech/20171004 Concurrent Servers Part 2 - Threads.md b/sources/tech/20171004 Concurrent Servers Part 2 - Threads.md index e24ef5e8dd..655c7ea3da 100644 --- a/sources/tech/20171004 Concurrent Servers Part 2 - Threads.md +++ b/sources/tech/20171004 Concurrent Servers Part 2 - Threads.md @@ -1,5 +1,8 @@ [Concurrent Servers: Part 2 - Threads][19] ============================================================ + +GitFuture is Translating + This is part 2 of a series on writing concurrent network servers. [Part 1][20] presented the protocol implemented by the server, as well as the code for a simple sequential server, as a baseline for the series. In this part, we're going to look at multi-threading as one approach to concurrency, with a bare-bones threaded server implementation in C, as well as a thread pool based implementation in Python.