当前位置:网站首页>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 .
边栏推荐
- Can async i/o be implemented by UDF operator and then called by SQL API? At present, it seems that only datastre can be seen
- Automatically update selenium driver chromedriver
- Today's sleep quality record 78 points
- (DART) usage supplement
- 使用MitmProxy离线缓存360度全景网页
- Method of canceling automatic watermarking of uploaded pictures by CSDN
- #DAYU200体验官# 在DAYU200运行基于ArkUI-eTS的智能晾晒系统页面
- What does security capability mean? What are the protection capabilities of different levels of ISO?
- CRMEB 商城系统如何助力营销?
- [compilation principle] LR (0) analyzer half done
猜你喜欢

传统企业要为 Web3 和去中心化做的 11 个准备

每日刷题记录 (十五)

Coscon'22 community convening order is coming! Open the world, invite all communities to embrace open source and open a new world~
![[unity] upgraded version · Excel data analysis, automatically create corresponding C classes, automatically create scriptableobject generation classes, and automatically serialize asset files](/img/08/1636ae909e7cc70ddf975d2e3122cd.png)
[unity] upgraded version · Excel data analysis, automatically create corresponding C classes, automatically create scriptableobject generation classes, and automatically serialize asset files
Implementation steps of mysql start log in docker

Efficient ETL Testing

UE4 blueprint learning chapter (IV) -- process control forloop and whileloop

The worse the AI performance, the higher the bonus? Doctor of New York University offered a reward for the task of making the big model perform poorly

PDF批量拆分、合并、书签提取、书签写入小工具

Up to 5million per person per year! Choose people instead of projects, focus on basic scientific research, and scientists dominate the "new cornerstone" funded by Tencent to start the application
随机推荐
Today's sleep quality record 78 points
MySQL中正则表达式(REGEXP)使用详解
ACL 2022 | small sample ner of sequence annotation: dual tower Bert model integrating tag semantics
Face recognition class attendance system based on paddlepaddle platform (easydl)
Dockermysql modifies the root account password and grants permissions
Example code of MySQL split string as query condition
NFTScan 开发者平台推出 Pro API 商业化服务
Koa2 addition, deletion, modification and query of JSON array
None of the strongest kings in the monitoring industry!
CRMEB 商城系统如何助力营销?
mysql-cdc 的jar包 ,在flink运行模式下,是不是要放在不同的地方呢?
为了交通安全,可以做些什么?
[compilation principle] LR (0) analyzer half done
每人每年最高500万经费!选人不选项目,专注基础科研,科学家主导腾讯出资的「新基石」启动申报...
存币生息理财dapp系统开发案例演示
安全保护能力是什么意思?等保不同级别保护能力分别是怎样?
Use mitmproxy to cache 360 degree panoramic web pages offline
Ajout, suppression et modification d'un tableau json par JS
让 Rust 库更优美的几个建议!你学会了吗?
AcWing 4299. Delete point