Skip to content

Instantly share code, notes, and snippets.

@daurnimator
Created October 10, 2012 14:56
Show Gist options
  • Save daurnimator/3866144 to your computer and use it in GitHub Desktop.
Save daurnimator/3866144 to your computer and use it in GitHub Desktop.
fend http benchmarker
local e = require "fend.epoll"()
local http = require "fend.examples.http_client"
local url , req = http.prep_request ( "http://127.0.0.1:8000" )
local concurrrent = 128
local max = 50e3
local dontquit = true
local count = 0
local starttime = os.clock()
local function cb ( ret , err )
if err then
error ( "Error Fetching HTTP Document: " .. err )
end
count = count + 1
print(count)
if count >= max then
dontquit = false
else
http.request ( url , req , e , cb )
end
end
for c=1,concurrrent do
http.request ( url , req , e , cb )
end
while dontquit do
print("STEP")
e:dispatch ( 128 )
end
local elapsed = os.clock() - starttime
print("DONE",elapsed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment