i use require like:
local xxx = require('xxx')
but,it also haven't to work.
--test.lua
function a()
ngx.print("test.lua");
end;
a();
--concat.lua
local test=require("test");
at the first request,it print:
test.lua
and,the next time,have nothing print;