The Apache in question is running on a Ubuntu-EC2 instance. It basically handles about a million requests per hour. Essentially a client will POST
a JSON and that's it - so an interaction of a client with the server only consists of this single request.
My naive assumption would be to turn KeepAlive
to off
then. Though I read that keeping a connection alive is also of benefit if the received requests across clients are very similar.
Should I switch KeepAlive
on
or off
?
(And as w're already at it - I would also appreciate a suggestion/clarification on MaxKeepAliveRequests
and KeepAliveTimeout
)