书栈网 · BookStack 本次搜索耗时 0.022 秒,为您找到 1983 个相关结果.
  • Leaf 源码概览

    Leaf 源码概览 Leaf 源码概览 leaf/chanrpc 提供了一套基于 channel 的 RPC 机制,用于游戏服务器模块间通讯 leaf/db 数据库相关,目前支持 MongoDB leaf/gate 网关模块,负责游戏客户端的接入 leaf/go 用于创建能够被 Leaf 管理的 goroutine leaf/log 日志相关 l...
  • Leaf 的模块机制

    Leaf 的模块机制 Leaf 的模块机制 一个 Leaf 开发的游戏服务器由多个模块组成(例如 LeafServer ),模块有以下特点: 每个模块运行在一个单独的 goroutine 中 模块间通过一套轻量的 RPC 机制通讯(leaf/chanrpc )Leaf 不建议在游戏服务器中设计过多的模块。 游戏服务器在启动时进行模块的注册,例如...
  • Sum Root to Leaf Numbers

    688 2018-04-14 《LeetCode题解》
    Sum Root to Leaf Numbers Sum Root to Leaf Numbers Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-t...
  • Leaf 中消息广播

    管理用户 一个最简单的广播的例子 Leaf 在消息广播上,没有做任何的优化,使用最简单粗暴的方式。 管理用户 游戏服务器一定需要用户管理,最常见的方式就是建立用户 ID 到用户实例的映射关系(还有可能存在用户帐号 ID、用户名到用户实例的映射关系)。例如: users = make ( map [ int ]* User ) Us...
  • Sum Root to Leaf Numbers

    Sum Root to Leaf Numbers 描述 分析 代码 Sum Root to Leaf Numbers 描述 Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An ex...
  • Sum Root to Leaf Numbers

    Sum Root to Leaf Numbers Sum Root to Leaf Numbers Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An example is the root...
  • Sum Root to Leaf Numbers

    Sum Root to Leaf Numbers 描述 分析 代码 Sum Root to Leaf Numbers 描述 Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number. An ex...
  • Part 10 - Splitting a Leaf Node

    Part 10 - Splitting a Leaf Node Splitting Algorithm Allocating New Pages Leaf Node Sizes Creating a New Root Internal Node Format Keeping Track of the Root Printing the Tree ...
  • 使用 console 和 Leaf 交互

    什么是 Leaf console Leaf console 使用 Leaf 内置命令简述 什么是 Leaf console 在 Leaf console 中我们可以输入交互式命令和 Leaf server 交互。 Leaf console 使用 首先,我们需要配置 Leaf 的 console 的端口号(但不能配置 IP,出于安全考虑,只能...
  • 在 Leaf 中使用 Protobuf

    一个简单的上手 编写服务器端 客户端如何对接服务器 常见问题 Protobuf id 的生成规则是什么? 客户端如何正确处理消息 ID? 为什么客户端解析出来的 id 很大? 本文假定你已经仔细阅读过 TUTORIAL 一个简单的上手 在开始本范例之前,请确保已经获取了 Leaf 和 Leafserver 并且正确配置(否则请阅读...