Linux eyewebsolution.dnshostserver.in 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
Apache
: 185.131.55.234 | : 216.73.216.138
676 Domain
5.6.40
omxrelocation
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
opt /
imunify360-webshield /
lualib /
resty /
template /
[ HOME SHELL ]
Name
Size
Permission
Action
html.lua
1.21
KB
-rw-r--r--
microbenchmark.lua
3.23
KB
-rw-r--r--
safe.lua
43
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : microbenchmark.lua
local template = require "resty.template" local ok, new_tab = pcall(require, "table.new") if not ok then new_tab = function() return {} end end local function run(iterations) local gc, total, print, parse, compile, clock, format = collectgarbage, 0, ngx and ngx.say or print, template.parse, template.compile, os.clock, string.format iterations = iterations or 1000 local view = [[ <ul> {% for _, v in ipairs(context) do %} <li>{{v}}</li> {% end %} </ul>]] print(format("Running %d iterations in each test", iterations)) gc() gc() local x = clock() for _ = 1, iterations do parse(view, true) end local z = clock() - x print(format(" Parsing Time: %.6f", z)) total = total + z gc() gc() x = clock() for _ = 1, iterations do compile(view, nil, true) template.cache = {} end z = clock() - x print(format("Compilation Time: %.6f (template)", z)) total = total + z compile(view, nil, true) gc() gc() x = clock() for _ = 1, iterations do compile(view, 1, true) end z = clock() - x print(format("Compilation Time: %.6f (template, cached)", z)) total = total + z local context = { "Emma", "James", "Nicholas", "Mary" } template.cache = {} gc() gc() x = clock() for _ = 1, iterations do compile(view, 1, true)(context) template.cache = {} end z = clock() - x print(format(" Execution Time: %.6f (same template)", z)) total = total + z template.cache = {} compile(view, 1, true) gc() gc() x = clock() for _ = 1, iterations do compile(view, 1, true)(context) end z = clock() - x print(format(" Execution Time: %.6f (same template, cached)", z)) total = total + z template.cache = {} local views = new_tab(iterations, 0) for i = 1, iterations do views[i] = "<h1>Iteration " .. i .. "</h1>\n" .. view end gc() gc() x = clock() for i = 1, iterations do compile(views[i], i, true)(context) end z = clock() - x print(format(" Execution Time: %.6f (different template)", z)) total = total + z gc() gc() x = clock() for i = 1, iterations do compile(views[i], i, true)(context) end z = clock() - x print(format(" Execution Time: %.6f (different template, cached)", z)) total = total + z local contexts = new_tab(iterations, 0) for i = 1, iterations do contexts[i] = { "Emma", "James", "Nicholas", "Mary" } end template.cache = {} gc() gc() x = clock() for i = 1, iterations do compile(views[i], i, true)(contexts[i]) end z = clock() - x print(format(" Execution Time: %.6f (different template, different context)", z)) total = total + z gc() gc() x = clock() for i = 1, iterations do compile(views[i], i, true)(contexts[i]) end z = clock() - x print(format(" Execution Time: %.6f (different template, different context, cached)", z)) total = total + z print(format(" Total Time: %.6f", total)) end return { run = run }
Close