Fetchs Nginx variable by Luajit with FFI way which is fast and cheap.
Compares to ngx.var.*
, performance has increased by more than five times. ^_^
Compiles the nginx c module to OpenResty:
./configure --prefix=/opt/openresty \
--add-module=/path/to/lua-var-nginx-module
Install the Lua source code, there are two ways:
luarocks install lua-resty-ngxvar
Or we can copy the source lua file to specified directory which OpenResty can load it normally.
make install LUA_LIB_DIR=/opt/openresty/lualib/
syntax: req = ngxvar.request()
Returns the request object of current request. We can cache it at your Lua code land if we try to fetch more than one variable in one request.
syntax: val = ngxvar.fetch(name, req)
Returns the Nginx variable value by name.
location /t {
content_by_lua_block {
local var = require("resty.ngxvar")
local req = var.request()
ngx.say(var.fetch("host", req))
ngx.say(var.fetch("uri", req))
}
}
Вы можете оставить комментарий после Вход в систему
Неприемлемый контент может быть отображен здесь и не будет показан на странице. Вы можете проверить и изменить его с помощью соответствующей функции редактирования.
Если вы подтверждаете, что содержание не содержит непристойной лексики/перенаправления на рекламу/насилия/вульгарной порнографии/нарушений/пиратства/ложного/незначительного или незаконного контента, связанного с национальными законами и предписаниями, вы можете нажать «Отправить» для подачи апелляции, и мы обработаем ее как можно скорее.
Комментарии ( 0 )