18. Nginx 와 Lua 그 레이스 케 일 발표

5156 단어 nginxluamemcached
memcached 설치
yum install -y memcached
#  memcached  ,  11211, nobody    ,-d      
memcached -p11211 -u nobody -d
#    IP       IP
telnet 127.0.0.1 11211
set 119.32.216.122 0 0 1
1
quit

lua 용 memcached 설치
wget https://github.com/openresty/lua-resty-memcached/archive/v0.11.tar.gz
tar -zxvf v0.11.tar.gz
mkdir -p /usr/local/share/lua/5.1
cp -r lua-resty-memcached-0.11/lib/resty /usr/local/share/lua/5.1

test. lua 파일 만 들 기
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("failed 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
        ngx.exec("@server_test")
        return
    end
    ngx.exec("@server_product")

nginx 설정
    server {
        listen 8867;
        server_name www.siguoya.name;
        root /usr/local/nginx/1.12.1/html;
        location / {
            content_by_lua_file /etc/nginx/test.lua;
        }
        location /hello {
            default_type text/plain;
            content_by_lua 'ngx.say("hello lua")';
        }
        location /ua {
            default_type text/plain;
            content_by_lua '
                clientIP=ngx.req.get_headers()["USER-AGENT"]
                ngx.say("IP:",clientIP)
                ';
        }
        location @server_product {
            default_type text/plain;
            return 200 'product';
        }
        location @server_test {
            default_type text/plain;
            return 200 'test';
        }
    }
119.32.216.122 이 IP 를 memcached 에 추 가 했 기 때문에 방문 http://www.siguoya.name:8867/ 할 때 본 내용 은 test 이 고 전체 대 리 를 시작 한 후에 본 내용 은 product 이 며 일부 사용 자 를 대상 으로 그 레이스 케 일 테스트 효 과 를 실현 했다.
특정한 제목 으로 읽다.
  • 1. Nginx 의 장점
  • 2. Nginx 의 설치 와 켜 기 자동 켜 기
  • 3. Nginx 디 렉 터 리 와 설정 문법
  • 4. Nginx 모듈
  • 5. Nginx 정적 자원 처리
  • 6. Nginx 브 라 우 저 캐 시 원리
  • 7. Nginx 자원 의 크로스 도 메 인 접근
  • 8. Nginx 자원 의 도 난 방지 체인
  • 9. Nginx 에이전트
  • 10. Nginx 부하 균형
  • 11. Nginx 캐 시
  • 12. Nginx 동정 분리
  • 13. Nginx Rewrite
  • 14. Nginx Secure Link
  • 15. Nginx Geo
  • 16. Nginx HTTPS 서비스
  • 17. Nginx 와 Lua 개발
  • 18. Nginx 와 Lua 그 레이스 케 일 발표
  • 19. Nginx 에서 흔히 볼 수 있 는 오류
  • 20. Nginx 성능 최적화
  • 21. Nginx 안전 관리
  • 좋은 웹페이지 즐겨찾기