书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 355 个相关结果.
  • Framing

    546 2020-12-25 《Tokio v1.0 Tutorial》
    Framing Framing We will now apply what we just learned about I/O and implement the Mini-Redis framing layer. Framing is the process of taking a byte stream and converting it to...
  • 架构

    内部细节 Deno 和 Linux 类比 资源 (Resources) 指标 (Metrics) 架构示意图 会议 内部细节 Deno 和 Linux 类比 Linux Deno 进程 (Processes) Web Workers 系统调用 (Syscalls) Ops 文件描述符 (fd) Resource ids (rid) ...
  • 9.4. 架构

    内部细节 Deno 和 Linux 类比 资源 (Resources) 指标 (Metrics) 架构示意图 内部细节 Deno 和 Linux 类比 Linux Deno 进程 (Processes) Web Workers 系统调用 (Syscalls) Ops 文件描述符 (fd) Resource ids (rid) 调...
  • Futures

    Futures Futures是什么 实现future 返回NotReady 一个更复杂的future Futures 在指南早期暗示的future 是用于管理异步逻辑的构建块。 它们是Tokio使用的底层异步抽象。 future 的实施由future crate 提供。 但是,为方便起见,Tokio重新导出了许多类型。 Futur...
  • 2.1. Signal handling

    Signal handling Differences between operating systems First off: Handling Ctrl+C Handling other types of signals Using channels Using futures and streams What to do when you r...
  • 运行时模型

    运行时模型 同步模型 非阻塞套接字 轮询模型 执行者(Executors) 运行时模型 现在我们将介绍Tokio /future 运行时模型。 Tokio构建在future 箱顶部并使用其运行时模型。 这允许它也使用future 箱与其他图书馆互操作。 注意:此运行时模型与其他语言中的异步库非常不同。 虽然在较高的层面上,API看起来很相似...
  • Distributed Lock

    Distributed Lock Introduction How to use Detailed design Distributed Lock Introduction Meta provides the functionality of distributed locks via gRPC . How to use The meta...
  • Distributed Lock

    Distributed Lock Introduction How to use Detailed design Distributed Lock Introduction Meta provides the functionality of distributed locks via gRPC . How to use The meta...
  • Distributed Lock

    Distributed Lock Introduction How to use Detailed design Distributed Lock Introduction Metasrv provides the functionality of distributed locks via gRPC . How to use The m...
  • Store values

    612 2020-12-25 《Tokio v1.0 Tutorial》
    Store values Store values We will now implement the process function to handle incoming commands. We will use a HashMap to store values. SET commands will insert into the Ha...