Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Layout (0.17 sec)

  1. docs/zh/docs/deployment/concepts.md

    ### 多进程 - Workers
    
    如果您的客户端数量多于单个进程可以处理的数量(例如,如果虚拟机不是太大),并且服务器的 CPU 中有 **多个核心**,那么您可以让 **多个进程** 运行 同时处理同一个应用程序,并在它们之间分发所有请求。
    
    当您运行同一 API 程序的**多个进程**时,它们通常称为 **workers**。
    
    ### 工作进程和端口
    
    还记得文档 [About HTTPS](https.md){.internal-link target=_blank} 中只有一个进程可以侦听服务器中的端口和 IP 地址的一种组合吗?
    
    现在仍然是对的。
    
    因此,为了能够同时拥有**多个进程**,必须有一个**单个进程侦听端口**,然后以某种方式将通信传输到每个工作进程。
    
    ### 每个进程的内存
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 16.2K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    I'll show you some concrete examples in the next chapters.
    
    ---
    
    Then the next concepts to consider are all about the program running your actual API (e.g. Uvicorn).
    
    ## Program and Process
    
    We will talk a lot about the running "**process**", so it's useful to have clarity about what it means, and what's the difference with the word "**program**".
    
    ### What is a Program
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 18K bytes
    - Viewed (0)
Back to top