Persistent connections

Using socket.http in lua and I notice that it uses a new TCP conn each time I do http.request{…POST…}.
Is there a way to reuse conn (eg. using KEEPALIVE) that the protocol supports? Wondering if there is a http socket lib that supports KEEPALIVE? Any examples?

You do know that there is also http.request() for making HTTP requests? I don’t think it supports keep alive though.