- NGINX Cookbook
- Tim Butler
- 155字
- 2021-07-03 00:04:21
How it works...
Let's take apart the details line-by-line:
- The Active connections line lists the amount of connections to the server. For a quiet server, this could be less than a dozen. For a busy server, expect this to be in the hundreds.
- The server accepts handled requests line is little confusing, since it's represented by three numbers (81, 81, and 177 in this example). The first number represents the amount of accepted connections. The second number represents the total number of handled connections. Unless there's a resource limitation, the number of accepted and handled connections should be the same. Next, we have the total number of client requests.
- The last line represents the state of the active connections. Reading means NGINX is reading the request headers, Writing means NGINX is writing data back to the client, and Waiting means that the client is now idle but still has the connection open (due to keep-alives).
推薦閱讀
- C# 7 and .NET Core Cookbook
- Intel Galileo Essentials
- PyTorch自動駕駛視覺感知算法實戰
- Machine Learning with R Cookbook(Second Edition)
- The Computer Vision Workshop
- Mastering Swift 2
- SQL Server 2016數據庫應用與開發習題解答與上機指導
- Advanced Oracle PL/SQL Developer's Guide(Second Edition)
- HTML5 APP開發從入門到精通(微課精編版)
- PHP+MySQL+Dreamweaver動態網站開發從入門到精通(第3版)
- RubyMotion iOS Develoment Essentials
- 愛上C語言:C KISS
- 軟件設計模式(Java版)
- Responsive Web Design with jQuery
- Java核心編程