摘要: 这时假设 package.path 的值是: /Users/dengjoe/lua/?.lua;./?.lua;/usr/local/share/lua/5.1/?.lua;/usr/local/share/lua/5.1/?/init.lua;/usr/local/lib/lua/5.1/?.lu 阅读全文
posted @ 2020-02-29 22:58 FromScratch 阅读(188) 评论(0) 推荐(0) 编辑
摘要: # nginx.conf http { # you do not need to configure the following line when you # use LuaRocks or opm. lua_package_path "/path/to/lua-resty-mlcache/lib 阅读全文
posted @ 2020-02-29 19:45 FromScratch 阅读(251) 评论(0) 推荐(0) 编辑
摘要: -- -- classic, object model. -- -- Copyright (c) 2014, rxi -- -- This module is free software; you can redistribute it and/or modify it under -- the t 阅读全文
posted @ 2020-02-29 17:17 FromScratch 阅读(273) 评论(0) 推荐(0) 编辑
摘要: lua 注释 1. 单行注释 -- 功能等同于C++中的// 2. 多行注释 --[[ 注释的内容 ]] 功能等同于C++中的 /**/ 3. 多行注释 --[ [ 注释和内容 ] ], 也等同于C++中的/**/, 这个主要用于注释的内容里面有像arr[arr2[idx]] 这种文本, 如果使用- 阅读全文
posted @ 2020-02-29 11:25 FromScratch 阅读(279) 评论(0) 推荐(0) 编辑