Subject: | Disabling keepalive? |
As POE::Component::Client::HTTP has a 'ConnectionManager', we should be
able to pass an arbitrary connection manager - not just a
Client::Keepalive object. Is there a suitable object I could pass that
would disable keepalive entirely?
For now, I'm doing:
ConnectionManager => POE::Component::Client::Keepalive->new(
keep_alive => 0.001,
),
which seems to work (as keep_alive must be non-zero). Is there a less
hacky way to do this?