lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Using http.request() like so, 
        response_body = { }
        local res, code, response_headers, status = http.request
        {
        url = "">
        method = "POST",

is resulting in a new TCP conn each time I invoke this call. Is there a way to use persistent tcp conn to avoid this conn setup / tear down overhead?