From 86ddb18b728687f5c785f0c680a8bbf4c5673b77 Mon Sep 17 00:00:00 2001 From: Samuel Williams Date: Wed, 15 Sep 2021 19:52:49 +1200 Subject: [PATCH] Fix missing `Concurrency` -> `Parallelism`. --- 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.