博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Nginx+Lua 积累
阅读量:6471 次
发布时间:2019-06-23

本文共 1197 字,大约阅读时间需要 3 分钟。

Nginx+Lua 积累1、解析16进制编码的中文参数复制代码local encodeStr = "%E6%B0%94"local decodeStr = "";for i = 2, #encodeStr - 1, 3 do    local num = encodeStr:sub(i, i + 1);    num = tonumber(num, 16);    decodeStr = decodeStr .. string.char(num);endngx.say(decodeStr)复制代码2、类似replacelocal str = "a1b1c1d"local result = string.gsub(str,"1","2")   --将1替换成2local str = "A1B1C1"local result = string.gsub(str,"1","0",2)    --输出的结果为:A0B0C13、直连mysql复制代码local mysql = require "resty.mysql"local db = mysql:new()db:connect{    host = "10.10.3.218",    port = 3306,    database = "test_db",    user = "root",    password = "123456",    max_packet_size = 1024*1024}local result = db:query("SELECT ID,NAME FROM TABLE")ngx.say(result[1]["ID"])ngx.say(result[1]["NAME"])复制代码4、直接Redislocal redis = require "resty.redis"local cache = redis.new()cache.connect(cache,"10.10.3.208", "6379")local result = cache:get("key")5、使用管道复制代码local redis = require "resty.redis"local cache = redis.new()cache.connect(cache,"10.10.3.208", "6379")cache:init_pipeline()for i=1,10 do    cache:get("key")endlocal res = cache:commit_pipeline()for j=1,#res do    ngx.say(res[j])end复制代码6、计算一共有多少页local totalPage = math.floor((totalRow+pageSize-1)/pageSize)

 

转载地址:http://dacko.baihongyu.com/

你可能感兴趣的文章
node中非常重要的process对象,Child Process模块
查看>>
Webserver管理系列:3、Windows Update
查看>>
HDOJ 2151
查看>>
open-falcon
查看>>
doc2vec使用说明(一)gensim工具包TaggedLineDocument
查看>>
Q:图像太大,在opencv上显示不完全
查看>>
利用ItextPdf、core-renderer-R8 来生成PDF
查看>>
NavigationController的使用
查看>>
多线程编程之Windows环境下创建新线程
查看>>
Unity3D NGUI 给button按钮添加单间事件
查看>>
密码的校验.大小写字母,数字,特殊字符中的至少3种
查看>>
ios 不同sdk4.3 6.0版本号,关于方法的兼容性的通用方法
查看>>
js滚动加载到底部
查看>>
Virtualbox 虚拟机网络不通
查看>>
memcache数据库和redis数据库的区别(理论)
查看>>
我的友情链接
查看>>
MyBatis+Spring结合
查看>>
Java Web 高性能开发
查看>>
初识Scala反射
查看>>
第三十九天
查看>>