From e82b83a0e1518e7c2f87f6d72af5b82ed27c9089 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Fri, 17 Sep 2021 04:54:30 +1200 Subject: [PATCH] Fix missing `Concurrency` -> `Parallelism`. (#2698) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cfb4539fc3..ad522cb209 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Puma is a **simple, fast, multi-threaded, and highly parallel HTTP 1.1 server for Ruby/Rack applications**. -## Built For Speed & Concurrency +## Built For Speed & Parallelism Puma processes requests using a C-optimized Ragel extension (inherited from Mongrel) that provides fast, accurate HTTP 1.1 protocol parsing in a portable way. Puma then serves the request using a thread pool. Each request is served in a separate thread, so truly parallel Ruby implementations (JRuby, Rubinius) will use all available CPU cores.