| Server IP : 85.214.239.14 / Your IP : 216.73.216.178 Web Server : Apache/2.4.65 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 8.2.29 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/self/root/usr/share/doc/uwsgi-core/examples/router/ |
Upload File : |
print("uWSGI Lua router")
uwsgi.log("i am ready")
function route(env)
print(env.REQUEST_URI)
html = uwsgi.cache_get(env.REQUEST_URI)
local function send_cache()
coroutine.yield(html)
end
local function body()
page = ""
parts = { uwsgi.send_message("127.0.0.1:3033", 0, 0, env, 30, uwsgi.req_fd(), uwsgi.cl()) }
for i, part in pairs(parts) do
page = page .. part
coroutine.yield(part)
end
uwsgi.cache_set(env.REQUEST_URI, page)
end
if html then
return nil,{}, coroutine.wrap(send_cache)
end
return nil,{}, coroutine.wrap(body)
end
return route