lua-resty-mysql-toolset
基于 openresty/lua-resty-mysql 的 Lua mysql 客户端和服务器工具集
$ opm get huangnauh/lua-resty-mysql-toolset
开发中
名称
lua-resty-mysql-toolset - 基于 openresty/lua-resty-mysql 的 Lua mysql 客户端和服务器工具集
状态
此库仍处于开发的早期阶段。
概述
stream {
server {
-- mysql proxy listen on 1234
-- user: runner
-- password: runner123456
listen 1234;
content_by_lua_block {
local proxy = require "resty.mysql.proxy"
local conn, err = proxy:new({user="runner", password="runner123456"})
if err then
return
end
err = conn:handshake()
if err then
return
end
conn:process()
}
}
}
作者
huangnauh huanglibo2010@gmail.com
许可证
2bsd
依赖项
luajit >= 2.1.0, ngx_http_lua >= 0.10.6
版本
-
基于 openresty/lua-resty-mysql 的 Lua mysql 客户端和服务器工具集 2017-11-15 08:28:42