Created
October 10, 2012 14:56
-
-
Save daurnimator/3866144 to your computer and use it in GitHub Desktop.
fend http benchmarker
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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