-- 定义一个redisCutil对象
redisCutil = CTNRedisClient();

--设置服务器
local sPort = 6379
local sIP = '127.0.0.1'
redisCutil:setServer(sIP, sPort,"");

-- 是否已经登录
if redisCutil:isLogin() == true then
    print('redisCutil登陆成功');
else
    -- 登录
    if redisCutil:login() == true then
        print('重新登录成,redisCutil登陆成功');
    end
end

-- 检查是否已经连接,没有连接则连接
if redisCutil:checkAndLogin() == false then
    print('检查登录,重新连接成功');
end
if redisCutil:isLogin() == true then
    print('redisCutil登陆成功');
end

-- 退出
redisCutil:logout();
Copyright © TouchNet 2015 all right reserved,powered by Gitbook最后修订时间: 2022-06-21 09:21:04

results matching ""

    No results matching ""