I am want to know whether WireMock supports keep-alive by default or I need to set it explicitly somewhere.
I have setup a basic WireMock standalone which accepts request and generates a json payload. However when I curl -v the service I do not see the Connection: keep-alive header generated.
Also when I make a call to the mock service using the apache benchmark tool with -k option I do see lot of connections getting created and destroyed which means wiremock by default is not supporting the keep-alive.
I assume there must be something on the WireMock server to tell it to support persistent connections by default?
Regards, Adi