当前位置:网站首页>How to implement Lua entry of API gateway
How to implement Lua entry of API gateway
2022-07-06 23:25:00 【Fried chicken and spicy chicken 123】
structure Lua Project environment
LuaJIT Is relative to Lua More mainstream existence
stay IDEA Add EmmyLua Plug in is ready to use ,
idea function lua Script
Handwritten code on
Basic grammar
You can refer to the following information Lua Introduction reference
Print function
- io.write
print("123")
io.write('1234')
loop
There are two kinds of circulation
- for loop
for i = 1, 10 do
if i % 2 == 0 then
io.write(" even numbers ", i, '\n')
else
io.write(' Odd number ', i, "\n")
end
end
- while loop
a = 1
while true do
if a % 2 == 0 then
io.write(" even numbers ", a, '\n')
else
io.write(' Odd number ', a, "\n")
end
a = a + 1
end
This grammar and Bash shell The script is a little similar ,end and then Key words .
Conditions
- if - else - end
if a % 2 == 0 then
io.write(" even numbers ", a, '\n')
else
io.write(' Odd number ', a, "\n")
end
- if - elseif - end
if a > 10 and a % 8 == 0 and not (a % 16 == 0) then
break
elseif a > 10 and a % 8 == 0 and (a % 16 == 0) then
io.write(a, "+", '\n')
end
Default data structure
table, Is a generic like structure , That is, you can put anything in it , Represents a normal array , The symbol table , aggregate , Record , graphics , Trees, etc , And realize associative array .
c = table
table.insert(c,'a')
table.insert(c,'b')
table.insert(c,'c')
print(c[0],c[1],c[2],c[3])

According to the experimental results , Find out table It seems that the default from offset is 1 Start filling . let me put it another way ,table Itself is from the index 1 At the beginning .
except table Beyond this complex structure ,lua There are also some basic data types , as follows :
Special operators
lua There are two unusual operators , They are string concatenation characters … and Take string length characters #
c = 'dsadsadsadsadqewdxadssadsasdsasdsadsad'
d = 'dsarewfdsdsasdad'
print(c..d)
print(#c,#d,#(c..d))

function
Support to define template functions
function demo(func, value)
value = value * value
func(value)
end
function demo1(value)
print('-',value,'-')
end
function demo2(value)
print('=',value,'=')
end
demo(demo1,2)
demo(demo2,2)
there demo Template function ,demo1 and demo2 Is a subfunction , A subfunction can be a parameter of a function .
String manipulation
string The method inside 
iterator
Iterators are required to traverse an array or collection , and lua The iterator function provided in is ipairs, In terms of name , It's a binary structure .
OpenResty The method in
If in OpenResty and Lua The same method provided in , Then be sure to use OpenResty Of , because OpenResty It's synchronous and non blocking , however Lua The library itself may be blocked , It will greatly reduce the performance .
obtain http Request related methods
-- obtain uri
real = ngx.var.uri
-- To obtain parameters
local query = ngx.req.get_uri_args()
-- obtain headers
local headers = ngx.req.get_headers()
-- obtain cookies
local cookies = ngx.ctx.__cookies__
-- Get sources IP
real = ngx.var.remote_addr
-- obtain UA
real = ngx.var.http_user_agent
-- Access method
local method = ngx.req.get_method()
-- obtain post Parameters
ngx.req.read_body()
local post_params, err = ngx.req.get_post_args()
-- obtain referer
real = ngx.var.http_referer
-- obtain host
real = ngx.var.host
Some useful libraries
- resty.dns.client
- resty.dns.balancer
- resty.http
- resty.jwt
matters needing attention
- Local variables use local Keyword to define . Here, too Python It's kind of like , however python Generally, you specify function variables as global variables (global), And here we use local To define local variables .
- Lua The function parameter of can be method , This and JS A bit similar .
Okay , With Lua Knowledge and open source API Gateway knowledge , You can start writing your own API Gateway , My ultimate goal is to write an anti crawl system , Interested friends can pay attention to , I will keep updating .
边栏推荐
- What does security capability mean? What are the protection capabilities of different levels of ISO?
- Redis persistence mechanism
- Thinkphp5 multi table associative query method join queries two database tables, and the query results are spliced and returned
- Where does this "judge the operation type according to the op value and assemble SQL by yourself" mean? It means simply using Flink tab
- Two week selection of tdengine community issues | phase II
- 请问async i/o可以由udf算子实现然后用sql api调用吗?目前好像只看到Datastre
- Stop saying that microservices can solve all problems
- 监控界的最强王者,没有之一!
- mysql查看表结构的三种方法总结
- Case recommendation: An Qing works with partners to ensure that the "smart court" is more efficient
猜你喜欢

案例推荐丨安擎携手伙伴,保障“智慧法院”更加高效

DR-Net: dual-rotation network with feature map enhancement for medical image segmentation
Example code of MySQL split string as query condition

AI表现越差,获得奖金越高?纽约大学博士拿出百万重金,悬赏让大模型表现差劲的任务...

CUDA exploration

#DAYU200体验官# 首页aito视频&Canvas绘制仪表盘(ets)

Cloud native technology container knowledge points

Koa2 addition, deletion, modification and query of JSON array

Case recommendation: An Qing works with partners to ensure that the "smart court" is more efficient

NFTScan 开发者平台推出 Pro API 商业化服务
随机推荐
The statement that allows full table scanning does not seem to take effect set odps sql. allow. fullscan=true; I
CUDA exploration
Some suggestions for foreign lead2022 in the second half of the year
Gpt-3 is a peer review online when it has been submitted for its own research
传统企业要为 Web3 和去中心化做的 11 个准备
企业不想换掉用了十年的老系统
Docker starts MySQL and -emysql_ ROOT_ Password = my secret PW problem solving
Efficient ETL Testing
CRMEB 商城系统如何助力营销?
Pdf batch splitting, merging, bookmark extraction, bookmark writing gadget
Unified Focal loss: Generalising Dice and cross entropy-based losses to handle class imbalanced medi
PDF批量拆分、合并、书签提取、书签写入小工具
Automatically update selenium driver chromedriver
js对JSON数组的增删改查
B站大佬用我的世界搞出卷积神经网络,LeCun转发!爆肝6个月,播放破百万
JS addition, deletion, modification and query of JSON array
Is the more additives in food, the less safe it is?
MySQL connected vscode successfully, but this error is reported
Dockermysql modifies the root account password and grants permissions
mysql查看表结构的三种方法总结