书栈网 · BookStack 本次搜索耗时 0.028 秒,为您找到 4467 个相关结果.
  • asynquence API

    asynquence API Steps Errors Parallel Steps Step Variations Error Tolerance Promise-Style Steps Forking Sequences Combining Sequences asynquence API To start off, the wa...
  • parentPort

    parentPort Events Event: ‘message’ Methods parentPort.postMessage(message) parentPort Interface for communication with parent process. Process: Utility parentPort is...
  • LATENCY RESET [event]

    LATENCY RESET [event] LATENCY RESET [event] Available since 2.8.13. The LATENCY RESET command resets the latency spikes time series of all, or only some, events. When the c...
  • 附录:如何翻译

    如何翻译本书 {#translation-howto} 如何翻译本书 {#translation-howto} 本书的完整源代码可在 {{ book.sourceUrl }} 获得。 请 Fork 整个库 。 然后,将库提取至你的电脑上。你需要了解如何通过 Git 来实现这一过程。 阅读 GitBook 文档 ,尤其是 Markdown 章节 ...
  • Redis · 原理介绍 · 利用管道优化aofrewrite

    前言 aofrewrite详解 1. aofrewrite的基础实现 2. 使用pipe优化 3. aofrewrite代码剖析 aofrewrite的触发条件 管道建立 父进程与管道传输 子进程和管道传输 停止管道传输 父进程收尾 后记 前言 redis的aof持久化本质上是一个redo log,把所有执行过的写命令追加到ao...
  • mt_rand随机数

    在Swoole 中如果在父进程内调用了mt_rand ,不同的子进程内再调用mt_rand 返回的结果会是相同的。所以必须在每个子进程内调用mt_srand 重新播种。 shuffle 和array_rand 等依赖随机数的PHP 函数同样会受到影响 mt_rand ( 0 , 1 ); //开始 $worker_num = 1...
  • Documentation Style Guide

    Documentation Style Guide Language Best practices for clear, concise, and consistent content Use present tense Use active voice Use simple and direct language Address the reade...
  • Optimizing GitLab for large repositories

    1575 2020-07-27 《Gitlab 中文文档》
    Optimizing GitLab for large repositories Optimizing GitLab for large repositories Shallow cloning Git strategy Git clone path Git clean flags Git fetch extra flags Fork-based...
  • 贡献源码

    如何贡献 联系我们 Nacos Gitter- https://gitter.im/alibaba/nacos Nacos 微博- https://weibo.com/u/6574374908 Nacos segmentfault- https://segmentfault.com/t/nacos 邮件列表 贡献流程 贡献代码 如果变化不...
  • 守护进程

    守护进程 创建步骤 特点 分类 守护进程 守护进程(daemon)是一类在后台运行的特殊进程,用于执行特定的系统任务。很多守护进程在系统引导的时候启动,并且一直运行直到系统关闭。另一些只在需要的时候才启动,完成任务后就自动结束。 用户使守护进程独立于所有终端是因为,在守护进程从一个终端启动的情况下,这同一个终端可能被其他的用户使用。例如,用...