LAMPアーキテクチャはLAMPGCに進化し、LNMLGC(linux+nginx+mysql+lua+gearman+C)に進化する.


LAMPは大衆的なアーキテクチャですlinux+apache+mysql+php
我々のシステムのアーキテクチャでは,linux+apahce+mysql+php+gearman+Cのさらなる進化を遂げた.
phpはページの展示をします
コアビジネスロジックはC言語で実現され、phpはgearmanミドルウェアを通じてCタスクを呼び出す.
apacheは高同時性にあまり力を入れないため,高同時性を必要とするシーンではlinux+nginx+mysql+php+lua+gearman+Cをさらに進化させる.
ページ部分はnginx+fastcgi+php-fpmで示されています
高同時性のトラフィックコールはnginx+lua+gearman+Cによって実現される
ここではnginxがgearmanミドルウェアを呼び出す方法について重点的に説明します.
まずapache+phpがgearmanを呼び出す場合を見て、同期してgearmanタスクを呼び出すと、このタスクが3 S時間かかると、現在のapacheのhttpdプロセスがブロックされ、他のクライアントにサービスできなくなります.
nginxは高同時非同期呼び出しの性が強いことは地球人が知っている.
luaのコラボレーションは、同時非同期呼び出しを実現することもできます.
nginx+lua呼び出しgearmanの実装を見てみましょう.
nginxは同様にworkerであり、workerプロセスではluaコヒーレンスによってgearmanタスクを呼び出し、タスクが3 Sクロックであっても、この3 Sクロック内でこのworkerプロセスは他のクライアントにサービスすることができ、これはnginxのepollのイベントに依存して非ブロック呼び出しとluaコヒーレンス非同期呼び出しの利点をトリガし、この方法は高同時のビジネス呼び出しを実現することができる.
次にlua-nginx-moduleのインストールと簡単な構成手順を示します.
1、       
shell> ls
drwxr-xr-x  6 1000 1000    4096 Feb 26 03:14 LuaJIT-2.0.3
drwxrwxr-x 10 root root    4096 Jun  1  2014 lua-nginx-module-0.9.8
drwxr-xr-x  9 1001 1001    4096 Feb 18 03:14 nginx-1.7.2
drwxrwxr-x  9 root root    4096 Sep 26 02:43 ngx_devel_kit-0.2.19
drwxr-xr-x  8 1169 1169    4096 Feb 26 03:17 pcre-8.21

2、  luajit
http://luajit.org/download/LuaJIT-2.0.3.tar.gz

shell> cd LuaJIT-2.0.3
shell> make
shell> make install

         ,  LuaJIT   lib,include  /usr/local   。

3、  nginx
https://codeload.github.com/openresty/lua-nginx-module/tar.gz/v0.9.8
https://codeload.github.com/simpl/ngx_devel_kit/tar.gz/v0.2.19


shell> ./configure --prefix=/usr/local/nginx --add-module=../ngx_devel_kit-0.2.19 --add-module=../lua-nginx-module-0.9.8 --with-pcre=../pcre-8.21

4、  nginx
shell> cd /usr/local/nginx/sbin
shell> ./nginx
./nginx: error while loading shared libraries: libluajit-5.1.so.2: cannot open shared object file: No such file or directory
     luajit   

shell> echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf
shell> ldconfig

shell> ./nginx
  

5、nginx  
        /usr/local/nginx/conf/nginx.conf :
        location /lua {
            set $test "hello, world.";
            content_by_lua '
                ngx.header.content_type = "text/plain";
                ngx.say(ngx.var.test);
            ';
        }

shell> ./nginx -s reload

     : http://172.16.18.114/lua
  :hello, world.

    !

6、  lua-resty-gearman  
https://github.com/zhhchen/lua-resty-gearman/tree/master/lib/resty

7、nginx  lua    gearman
 nginx.conf http   :
lua_package_path "/usr/local/lua-resty-gearman/lib/?.lua;;";

 server   :
        location /test {
            content_by_lua '
                local gearman = require "gearman"
                local gm = gearman:new()

                gm:set_timeout(1000)    -- 1 sec

                ngx.header.content_type = "text/plain"

                local ok, err = gm:connect("172.16.18.162", 4730)
                if not ok then
                    ngx.say("failed to connect: ", err)
                    return
                end

                ok, err = gm:submit_job("reverse", "abcdef")
                -- submit_job,submit_job_bg,submit_job_high,submit_job_high_bg,submit_job_low,submit_job_low_bg are supported
                -- submit_job(function_name, workload[, unique])

                if not ok then
                    ngx.say("failed to submit job: ", err)
                    return
                else
                    ngx.say(ok)
                end

                -- put it into the connection pool of size 100,
                -- with 0 idle timeout
                local ok, err = gm:set_keepalive(0, 100)
                if not ok then
                    ngx.say("failed to set keepalive: ", err)
                    return
                end

                -- or just close the connection right away:
                -- local ok, err = gm:close()
                -- if not ok then
                --     ngx.say("failed to close: ", err)
                --     return
                -- end
            ';
        }

     : http://172.16.18.114/test
  :fedcba