Ngxin与lua(十一)

Lua

lua是一个简洁,轻量,可扩展的脚本语言.
nginx与lua的优势:充分的结合Nginx的并发处理epoll优势和lua的轻量实现简单的功能高并发 的场景。

//安装lua
yum install lua
//进入lua交互环境,可以进行编程等操作
lua

//以lua脚本方式运行 test.lua
print("I'm apple life")
//给该文件可执行权限
 chmod a+rx ./test.lua
//直接运行
./test.lua

注释

- 行注释

--[[
    块注释
--]]

变量:只有double型

a='alo\n123'
a="alo\n123\""      //换行符
a='\97lo\10\04923' //asci写法
a=[[alo123"]]
布尔类型只有 nil 和false, 数字0代表false,空字符串('\0')都是true
lua中的变量没有特殊说明,全是全局变量

while循环

sum =0
num =1
while num<= 100 do
    sum = sum+num
    num =num+1
end
print("sum =",sum)
//lua 不支持++ 或是 +=这样的操作

for循环

sum =0
for i =1,100 do
    sum =sum+i
end

if-else判断

if age ==40 and sex=="Male" then
    print("大于40的男人")
elseif age>60 and sex ~="Female" then
    print("非女人而且大于60")
else
    local age =io.read()
    print("your age is "..age)
end

~= 不等于
.. 字符串的拼接操作符 
io.read() 从屏幕读取终端信息
io库的分别从 stdin和stdout读写的 read 和write函数

Nginx+lua环境

需要安装工具:参考文章 http://www.imooc.com/article/19597

  • LuaJIT
  • ngx_devel_kit 和 lua-nginx-module
  • 重新编译 nginx

nginx调用lua模块指令

nginx的可插拔模块化加载执行,共11个处理阶段

set_by_lua        设置nginx变量,可以实现复杂的赋值逻辑
set_by_lua_file   执行lua文件

access_by_lua       请求访问阶段处理,用于访问控制
access_by_lua_file  执行lua文件

content_by_lua        内容处理器,接受请求处理并输出相应
content_by_lua_file   执行lua文件

Nginx Lua API

ngx.var  nginx变量
ngx.req.get_headers  获取请求头
ngx.req.get.get_uri_args  获取url请求参数
ngx.redirect  重定向
ngx.print  输出响应内容体
ngx.say   通ngx.print,但是会最后输出一个换行符
ngx.header  输出响应头
...

灰度发布

按照一定的关系区别,分部分的代码进行上线,使代码的发布能平滑过渡上线.

  • 用户的信息 cookie等信息区别
  • 根据用户的ip地址

场景:根据用户的ip等信息,区别访问不同的业务场景

安装 memcached

yum install memcached

配置多个tomcat

tomcat8080 tomact9090
//修改tomcat端口 在tomcat目录下下,编辑修改即可
vim conf/server.xml
//启动tomcat
sh cd/catalina.sh start;tail -f ../logs/catalina.o
//查看端口启动
netstat -luntp

启动memcached

#-p启动端口 -u 启动用户 -d以守护进程运行
memcached -p11211 -u nobody -d
//查看
netstat -luntp|grep 11211

配置deo.conf

#示例展示

server {
    ...
    location /hello {
        default_type 'text/plain';
        content_by_lua 'ngx.say("hello,lua")';
    }   

    location /myip {
        default_type 'text/plain';
        content_by_lua 'clientIP=ngx.req.get_headers()["x_forwarded_for"] ngx.say("IP:",clientIP)';
    }
    
    location / {
        default_type "text/html";
        #lua脚本路径
        content_by_lua_file /opt/app/lua/dep.lua;
        #add_after_body "$http_x_forwarded_for";
    }

    location @server {
        proxy_pass http://127.0.0.1:9090;
    }

    location @server_test {
        proxy_pass http://127.0.0.1:8080;
    }
    ...
}

在下面的这个脚本中,lua调用memcached 需要安装一个模块

#获取 
wget https://github.com/agentzh/lua-resty-memcached/archive/v0.11.tar.gz
#解压
tar -zxvf v0.11.tar.gz
#拷贝
cp -r lua-restry-memcached-0.11/lib/restry /usr/local/share/lua/5.1/



//lua脚本
- x-Real-ip一般为前端约定的一个自定义ip
clientIP =ngx.req.get_headers()["X-Real-IP"]
if clientIP == nil then
    clientIP = ngx.req.get_headers()["x_forwarded_for"]
end
if clientIP = nil then
    clientIP = ngx.var.remote_addr
end 
    local memcached = require "resty.memcached"
    local memc,err = memcached.new()
    if not memc then
        ngx.say("fail to instantiate memc: ",err)
        return
    end
    local ok,err = memc:connect("127.0.0.1",11211)
    if not ok then
        ngx.say("failed to connect: ",err)
        return
    end
    local res.flags,err = memc.get(clientIP)
    ngx.say("value key: ",res,clientIP)
    if err then
        ngx.say("failed to get clientIP: ",err)
        return
    end
    if res == "1" then

//在memchded 存储值,进入memcached环境
telent 127.0.0.1 11211 
//设置值为1
set 192.168.9.1 0 0 1
输入1
1
//获取值 get 192.168.9.1

//reload nginx即可验证测试

你可能感兴趣的:(Ngxin与lua(十一))