openresty--5--ffi和增加第三方模块

ffi

ffi

1
2
3
4
5
local ffi = require("ffi")
ffi.cdef[[
int printf(const char *fmt, ...);
]]
ffi.C.printf("Hello %s!", "world")

1
2
[root@192 openresty]# ./luajit/bin/luajit-2.1.0-beta3 ./nginx/lua/ffi.lua 
Hello world

增加第三方模块

  1. 查询相关模块
    查询相关模块

    "
  2. 把第三方模块复制到resty下
    路径1
    路径2

    "