Nginx + Lua + redis (一)(转)

使用 Lua 脚本语言操作 Redis。

由于大量的 Lua 代码写在 Nginx 中,会使配置文件显得很繁琐,所以这里使用 content_by_lua_file 来引入 Lua 脚本文件。

要使用 content_by_lua_file,需要安装 nginx_lua_module 模块。

安装介绍,猛击这里:nginx_lua_module

大神 章亦春 提供了一个很方便的开发包,如下:

  1. git clone https://github.com/agentzh/lua-resty-redis.git

该包中,有一个 Lib 目录,将 Lib 目录下的文件和子目录拷贝至目录 /data/www/lua

在 Nginx 配置文件中,需要加一行代码,以便引入 redis.lua

注:加在 http 段里。

  1. lua_package_path "/data/www/lua/?.lua;;";

为了使得 lua 脚本的修改能及时生效,需要加入一行代码,如下:

注:在 server 段里,加入代码,如果不加此代码或者设置为 on 时,则需要重启 Nginx。

  1. lua_code_cache off;

在 Nginx 配置文件中,加入一个Location:

  1. location /lua {
  2. content_by_lua_file /data/www/lua/test.lua;
  3. }

注:引入 test.lua 脚本文件

Lua 脚本文件:test.lua

  1. local redis = require "resty.redis"
  2. local cache = redis.new()
  3. local ok, err = cache.connect(cache, '127.0.0.1', '6379')
  4. cache:set_timeout(60000)
  5. if not ok then
  6. ngx.say("failed to connect:", err)
  7. return
  8. end
  9. res, err = cache:set("dog", "an aniaml")
  10. if not ok then
  11. ngx.say("failed to set dog: ", err)
  12. return
  13. end
  14. ngx.say("set result: ", res)
  15. local res, err = cache:get("dog")
  16. if not res then
  17. ngx.say("failed to get dog: ", err)
  18. return
  19. end
  20. if res == ngx.null then
  21. ngx.say("dog not found.")
  22. return
  23. end
  24. ngx.say("dog: ", res)
  25. local ok, err = cache:close()
  26. if not ok then
  27. ngx.say("failed to close:", err)
  28. return
  29. end

测试结果如下:

    1. [root@localhost conf]# curl http://localhost/lua
    2. set result: OK
    3. dog: an aniaml

http://blog.csdn.net/vboy1010/article/details/7892120

上一篇:SQLOS任务调度算法


下一篇:Python开发第一篇