书栈网 · BookStack 本次搜索耗时 0.029 秒,为您找到 769 个相关结果.
  • 异步编程

    异步编程 异步编程部分练习 异步编程 目前为止,我们在做的都是同步编程。同步编程执行过程很简单:一个程序从第一行开始,逐行执行一直到末尾。每次调用一个函数时,程序就会等待这个函数返回然后在执行下一行。 在异步编程中,函数地执行通常是非阻塞 的。换句话说,每次你调用一个函数它就会立即返回,但相对得,这就表示函数并不会在其本来的位置被执行。它有了一种...
  • 23.5 Day 5 - 编写Web框架

    Day 5 - 编写Web框架 @get和@post 定义RequestHandler middleware 参考源码 Day 5 - 编写Web框架 在正式开始Web开发前,我们需要编写一个Web框架。 aiohttp 已经是一个Web框架了,为什么我们还需要自己封装一个? 原因是从使用者的角度来说,aiohttp 相对比较底层,编写一...
  • 传输和协议

    传输和协议 传输 传输层级 基础传输 只读传输 只写传输 数据报传输 子进程传输 协议 基础协议 基础协议 流式协议 缓冲流协议 数据报协议 子进程协议 例子 TCP 回显服务器 TCP 回显客户端 UDP 回显服务器 UDP 回显客户端 链接已存在的套接字 loop.subprocess_exec() 与 Subpro...
  • Basic Usage

    Basic Usage Connect to EdgeDB Type conversion Client connection pools Transactions Basic Usage To start using EdgeDB in Python, create an edgedb.Client instance using edged...
  • 数据库驱动

    数据库驱动 用来连接和操作数据库的库。 MySQL:awesome-mysql 系列 aiomysql:基于 asyncio 的异步 MySQL 数据库操作库。官网 mysql-python:Python 的 MySQL 数据库连接器。官网 ysqlclient:mysql-python 分支,支持 Python 3。 oursql:一个更好...
  • 高层级 API 索引

    高层级 API 索引 Tasks 队列集 子进程集 流 同步 异常 高层级 API 索引 这个页面列举了所有能用于 async/wait 的高层级asyncio API 集。 Tasks 运行异步程序,创建Task对象,等待多件事运行超时的公共集。 run() 创建事件循环,运行一个协程,关闭事件循环。 create_...
  • Slow Consumers

    Slow Consumers Limiting Incoming/Pending Messages by Count and Bytes Detect a Slow Consumer and Check for Dropped Messages Slow Consumers NATS is designed to move messages thr...
  • Run a Server Manually - Uvicorn

    Run a Server Manually - Uvicorn Server Machine and Server Program Install the Server Program Run the Server Program Hypercorn with Trio Install Hypercorn with Trio Run with Tri...
  • Run a Server Manually - Uvicorn

    Run a Server Manually - Uvicorn Server Machine and Server Program Install the Server Program Run the Server Program Hypercorn with Trio Install Hypercorn with Trio Run with Tri...
  • Create Executor

    Create Executor Minimum working example Using Executors with AsyncIO Constructor Subclass __init__ Passing arguments Create Executor Executor process DocumentArray in-p...