• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

openresty+lua2、openresty连接redis,实现crud

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

  redis 的话,openresty 已经集成,ng 的话,自己引入即可。

  github 地址:https://github.com/openresty/lua-resty-redis

  github 里提供有详细的教程,按照教程来应该是不会有问题的。redis 我也简单写了一个工具类,具体贴上我的一系列代码吧.大神勿喷.

 

  工具类:(很基础,重点是自己去写,只是针对初学者,大神忽视即可)

local connectRedisUtil = {}

local redis = require "resty.redis"
-- or connect to a unix domain socket file listened
-- by a redis server:
--     local ok, err = red:connect("unix:/path/to/redis.sock")

function connectRedisUtil.connectRedis() 
    local red = redis:new()
    red:set_timeout(1000) -- 1 sec

    local ok, err = red:connect("127.0.0.1", 6379)
    if not ok then
        ngx.say("failed to connect: ", err)
        return false
    end
    
    return red
end

return connectRedisUtil
View Code

 

  调用:

local connectRedisUtil = require("connectRedisUtil")
local red = connectRedisUtil.connectRedis()
if red == false then
    ngx.exit(ngx.HTTP_INTERNAL_SERVER_ERROR)
    return
end

--set
local ok, err = red:set("englishName", "Allen")
if not ok then
    ngx.say("set bad result:", err)
    return
end

--get
local res, err = red:get("englishName")
if not res then
    ngx.say("get englishName failed:", err)
    return
end
ngx.say("englishName is : ", res)

res, err = red:get("name")
if not res then
    ngx.say("get bad result:", err)
    return
else
    ngx.say("res is :", res)
end
View Code

 

  openresty 配置:

server {
    listen 6688;
    server_name localhost;    
    default_type "text/html";

    lua_need_request_body on;

    location = /test_redis_exercise {
        content_by_lua_file /Users/zhuzi/zhuzi_relation/exercise/lua_pro/redis_exercise.lua;
    }
}
View Code

  
  OK,搞定。接下来打开浏览器验证一下吧。

  效果我就不贴了,肯定是没有问题的。今天的就到这里了。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
redislua脚本(优势)Redis支持LUA脚本的主要优势发布时间:2022-07-22
下一篇:
toLua使用protobuf协议转Lua表发布时间:2022-07-22
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap