How to test keep-alive is working?

2011-08-26 Thread bradford
How do I test that keep-alive is working? I've added option http-server-close to the frontend and do not see a connection header in the http response. I use to see connectino: closed when I had httpclose enabled, but don't see connection: keep-alive or anything similar. So, how do I test it's

Re: How to test keep-alive is working?

2011-08-26 Thread Bryan Talbot
You could use something as simple as curl to see if the connection is left in-tact. $ curl -I -v www.example.com If keep-alive is working, curl will include a verbose message like this: * Connection #0 to host www.example.com left intact and then close the connection since it has no pending

Re: How to test keep-alive is working?

2011-08-26 Thread Baptiste
Hi, In HTTP 1.1, Keep alive is the default mode and does not require any header. On the other hand, in HTTP 1.0, there is no keepalive by default, that's why browser and web servers had to anounce it. More information available here: