Result changed after not using Cloudflare!?

This is my page result when I stopped using Cloudflare.
[url=http://www.webpagetest.org/result/131020_F8_37A]http://www.webpagetest.org/result/131020_F8_37A[/url]

I got an A in First Byte Time but my Keep-Alive score went down. Can anyone take a minute to explain why this is happening as I see my TTFB just improved a little bit?

This is when I use Cloudflare.
[url=http://www.webpagetest.org/result/131019_2P_H00]http://www.webpagetest.org/result/131019_2P_H00[/url]

When you serve your website through CloudFlare, their servers take care of (and control over) all HTTP connections. As such, they can enable features like Keep-Alive, even when your web host does not support it. Now that you disabled CloudFlare, connections are handled directly by your web host, and apparently they have indeed disabled keep-alive.

I’m assuming you are on shared hosting; in that case, there’s not much you can do about this. If, however, you are on your own VPS or dedicated server, you can enable keep-alive via your web server’s configuration files.

It looks like you’re not allowing your pages (i.e. your HTML) to be cached, which is fine (and often makes sense) for dynamic content, but it also means that when you serve your website through CloudFlare, their edge servers will always have to forward the page request to your web host, rather than serving it directly as they would with cached resources such as images, thus adding a bit of processing and latency. This might explain the slightly higher TTFB.

Cause I’m using shared hosting so there’s no way I can change the Keep-alive. I guess it’s better to use Cloudflare again.

Thanks for your full explanation.

You can always ask your web host, of course. In some rare cases, you may be able to turn it on via .htaccess, but most hosts simply prefer to keep it off to avoid having too many active connections on the server (which can be costly).

I followed this tut to enable keep-alive in .htaccess but don’t see any change yet.