链接:https://www.jianshu.com/p/753b06ca07b0 --冒号:在定义时省略了self --点号:在定义时不省略self Class = {} Class.__index = Class function Class.new(x,y) local cls = {} se ...
分类:
其他好文 时间:
2020-02-26 01:39:32
阅读次数:
68
一、根据url中的参数来确定缓存的key set_by_lua_block $dataArg { local enc = ngx.req.get_uri_args()["enc"] local key = ngx.req.get_uri_args()["key"] local name = ngx. ...
分类:
其他好文 时间:
2020-02-25 09:30:28
阅读次数:
65
在Nginx/Tengine服务器上安装证书 https://help.aliyun.com/document_detail/98728.html?spm=5176.2020520163.0.0.3c3856a7A8zZ8s 在IIS服务器上安装SSL证书 https://help.aliyun.c ...
分类:
其他好文 时间:
2020-02-25 09:27:49
阅读次数:
89
常用的分布式锁 一、.基于数据库实现分布式锁 1. 悲观锁 利用select … where … for update 排他锁 注意: 其他附加功能与实现一基本一致,这里需要注意的是“where name=lock ”,name字段必须要走索引,否则会锁表。有些情况下,比如表不大,mysql优化器会 ...
分类:
其他好文 时间:
2020-02-24 09:22:34
阅读次数:
116
深入函数第一篇 1. 函数是 第一类值 ,具有特定的 词法域 第一类值 1. 第一类值的意思是函数与 lua 中的其他类型如数字,字符串具有相同的权力 2. 函数可以存储到全局变量或局部变量变量,还可以存储到 table 中 3. 可作为实参传递给其他函数,也可以作为其他函数的返回值 词法域 1. ...
分类:
其他好文 时间:
2020-02-23 22:16:33
阅读次数:
66
1 local function keepTwoDecimalPlaces(decimal) 2 decimal = decimal * 100 3 if decimal % 1 >= 0.5 then 4 decimal=math.ceil(decimal) 5 else 6 decimal=ma ...
分类:
其他好文 时间:
2020-02-23 18:05:21
阅读次数:
88
function numberToString(szNum) 阿拉伯数字转中文大写 local szChMoney = "" local iLen = 0 local iNum = 0 local iAddZero = 0 local hzUnit = {"", "十", "百", "千", "万" ...
分类:
其他好文 时间:
2020-02-23 17:55:39
阅读次数:
150
torch.ge torch.ge(input, other, out=None) → Tensor 逐元素比较input和other,即是否 input>=otherinput>=other。 如果两个张量有相同的形状和元素值,则返回True ,否则 False。 第二个参数可以为一个数或与第一个 ...
分类:
其他好文 时间:
2020-02-22 19:55:10
阅读次数:
180
近期工作中接触RPA(Robotic Process Automation,即机器人流程自动化)方向的项目,在做技术预研中,接触了 UiBot 和 Automagica 这两款流程自动化的组件。其中 UiBot 是一款成熟的软件产品,安装其平台后,可以直接按用户的业务场景,通过绘制流程图+配置动作和 ...
分类:
其他好文 时间:
2020-02-22 09:58:32
阅读次数:
119
目的 lua嵌入式脚本在window下编写测试。 http://www.lua.org/home.html http://www.lua.org/ftp/ ###lua版本 插件 pychamr-->setttings-->plugins >lua ###安装lua插件,安装完毕重启pycharm ...
分类:
其他好文 时间:
2020-02-21 16:31:44
阅读次数:
465