A low keepalive and limit_conn

Using keepalive (on zero) and connection limit, will the limit_conn
ever be hit if I had a low keepalive?

keepalive_timeout 0;
limit_conn_zone $binary_remote_addr zone=addr:10m;
limit_conn addr 10;

On Tuesday 31 January 2012 15:45:43 Ryan B. wrote:

Using keepalive (on zero) and connection limit, will the limit_conn
ever be hit if I had a low keepalive?

If client opens connection but doesn’t send request, then limit_conn
doesn’t hit.

wbr, Valentin V. Bartenev