书栈网 · BookStack 本次搜索耗时 0.023 秒,为您找到 3571 个相关结果.
  • 2.1 – Lexical Conventions

    2.1 – Lexical Conventions 2.1 – Lexical Conventions Identifiers in Lua can be any string of letters, digits, and underscores, not beginning with a digit. This coincides with th...
  • SCRIPT KILL

    SCRIPT KILL *Return value SCRIPT KILL Available since 2.6.0. Time complexity: O(1) Kills the currently executing Lua script, assuming no write operation was yet performed ...
  • 其它

    其它 其它 Lua语言学习 二进制数据操作 文件操作 Lua模块
  • 软件架构

    软件架构 插件加载流程 插件内部结构 软件架构 Apache APISIX 是一个动态、实时、高性能的云原生 API 网关。它构建于 NGINX + ngx_lua 的技术基础之上,充分利用了 LuaJIT 所提供的强大性能。 为什么 Apache APISIX 选择 NGINX+Lua 技术栈? 。 APISIX 主要分为两个部分: A...
  • 1.4 函数

    1823 2019-04-08 《Lua程序设计》
    函数 • 多重返回值 • 变长参数 • 具名实参 • 深入函数 • closure(闭合函数) • 非全局的函数 • 正确的尾调用 函数 • 多重返回值 • 变长参数 • 具名实参 • 深入函数 • closure (闭合函数) ...
  • Plugins

    Plugins What are plugins? Why use plugins? Plugin compatibility with deployment types Terminology Plugin versioning Kong plugins Third-party plugins Developing custom plugin...
  • 2.7 LuaThread

    1494 2019-04-08 《Lua程序设计》
    Lua线程 TestLuaThread.cs Lua线程 TestLuaThread.cs using UnityEngine ; using System . Collections ; using LuaInterface ; public class TestLu...
  • 4.1 – The Stack

    4.1 – The Stack 4.1 – The Stack Lua uses a virtual stack to pass values to and from C. Each element in this stack represents a Lua value (nil , number, string, etc.). Whenever...