# 自定義函數
調用回調函數,并把一個數組參數作為回調函數的參數
~~~
local args = {...} or {}
methodName(unpack(args, 1, table.maxn(args)))
~~~
# 使用場景
你要調用的函數名是未知的
函數參數類型和數目也是未知的
一般常用于在定時器處理邏輯之中
> 偽代碼
~~~
addTask(endTime, callback, params)
if os.time() >= endTime then
callback(unpack(params, 1, table.maxn(params)))
end
~~~
# 小試牛刀
~~~
local function run(x, y)
ngx.say('run', x, y)
end
local function attack(targetId)
ngx.say('targetId', targetId)
end
local function doAction(method, ...)
local args = {...} or {}
method(unpack(args, 1, table.maxn(args)))
end
doAction(run, 1, 2)
doAction(attack, 1111)
~~~
我們再新建一個模塊 sample
~~~
local _M = {}
function _M:hello(str)
ngx.say('hello', str)
end
function _M.world(str)
ngx.say('world', str)
end
return _M
~~~
這個時候我們可以這樣調用,代碼接上文
因為sample模塊的方法聲明方式的不同
所以在調用時有些區別 主要是.和:的區別
[https://github.com/humbut/openresty-best-practices/blob/master/lua/dot_diff.md](https://github.com/humbut/openresty-best-practices/blob/master/lua/dot_diff.md)
~~~
local sample = require "sample"
doAction(sample.hello, sample, ' 123') -- 相當于sample:hello('123')
doAction(sample.world, ' 321') -- 相當于sample.world('321')
~~~
# 實戰演練
以下代碼為360公司公共組件之緩存模塊,正是利用了部分特性
~~~
-- {
-- key="...", cache key
-- exp_time=0, default expire time
-- exp_time_fail=3, success expire time
-- exp_time_succ=60*30, failed expire time
-- lock={...} lock opsts(resty.lock)
-- }
function get_data_with_cache( opts, fun, ... )
local ngx_dict_name = "cache_ngx"
-- get from cache
local cache_ngx = ngx.shared[ngx_dict_name]
local values = cache_ngx:get(opts.key)
if values then
values = json_decode(values)
return values.res, values.err
end
-- cache miss!
local lock = lock:new(ngx_dict_name, opts.lock)
local elapsed, err = lock:lock("lock_" .. opts.key)
if not elapsed then
return nil, string.format("get data with cache not found and sleep(%ss) not found again", opts.lock_wait_time)
end
-- someone might have already put the value into the cache
-- so we check it here again:
values = cache_ngx:get(opts.key)
if values then
lock:unlock()
values = json_decode(values)
return values.res, values.err
end
-- get data
local exp_time = opts.exp_time or 0 -- default 0s mean forever
local res, err = fun(...)
if err then
exp_time = opts.exp_time_fail or exp_time
else
exp_time = opts.exp_time_succ or exp_time
end
-- update the shm cache with the newly fetched value
cache_ngx:set(opts.key, json_encode({res=res, err=err}), exp_time)
lock:unlock()
return res, err
end
~~~
- 序
- Lua簡介
- Lua環境搭建
- 基礎數據類型
- 表達式
- 控制結構
- if/else
- while
- repeat
- 控制結構for的使用
- break,return
- Lua函數
- 函數的定義
- 函數的參數
- 函數的返回值
- 函數回調
- 模塊
- String庫
- Table庫
- 日期時間函數
- 數學庫函數
- 文件操作
- 元表
- 面向對象編程
- FFI
- LuaRestyRedisLibrary
- select+set_keepalive組合操作引起的數據讀寫錯誤
- redis接口的二次封裝(簡化建連、拆連等細節)
- redis接口的二次封裝(發布訂閱)
- pipeline壓縮請求數量
- script壓縮復雜請求
- LuaCjsonLibrary
- json解析的異常捕獲
- 稀疏數組
- 空table編碼為array還是object
- 跨平臺的庫選擇
- PostgresNginxModule
- 調用方式簡介
- 不支持事務
- 超時
- 健康監測
- SQL注入
- LuaNginxModule
- 執行階段概念
- 正確的記錄日志
- 熱裝載代碼
- 阻塞操作
- 緩存
- sleep
- 定時任務
- 禁止某些終端訪問
- 請求返回后繼續執行
- 調試
- 調用其他C函數動態庫
- 我的lua代碼需要調優么
- 變量的共享范圍
- 動態限速
- shared.dict 非隊列性質
- 如何添加自己的lua api
- 正確使用長鏈接
- 如何引用第三方resty庫
- 使用動態DNS來完成HTTP請求
- 緩存失效風暴
- Lua
- 下標從1開始
- 局部變量
- 判斷數組大小
- 非空判斷
- 正則表達式
- 不用標準庫
- 虛變量
- 函數在調用代碼前定義
- 抵制使用module()函數來定義Lua模塊
- 點號與冒號操作符的區別
- 測試
- 單元測試
- API測試
- 性能測試
- 持續集成
- 灰度發布
- web服務
- API的設計
- 數據合法性檢測
- 協議無痛升級
- 代碼規范
- 連接池
- c10k編程
- TIME_WAIT問題
- 與Docker使用的網絡瓶頸
- 火焰圖
- 什么時候使用
- 顯示的是什么
- 如何安裝火焰圖生成工具
- 如何定位問題