Top "Keep-alive" questions

A feature of HTTP where the same connection is used for multiple requests, speeding up downloading of web pages with multiple resources.

Simple comet example using php and jquery

Can anyone give me a good and simple example of the comet technique using PHP? I just need an example …

php http iis comet keep-alive
WebSockets ping/pong, why not TCP keepalive?

WebSockets have the option of sending pings to the other end, where the other end is supposed to respond with …

tcp websocket keep-alive
HTTP keep-alive in node.js

I am trying to set-up a HTTP client to keep the underlying connection open (keep-alive) in node.js, but it …

node.js http keep-alive
How can I enable keep-alive?

I ran a Google Page Speed and it says I scored 57/100 because I need to "Enable Keep-Alive" and "Enable Compression". …

image compression keep-alive
Python urllib2 with keep alive

How can I make a "keep alive" HTTP request using Python's urllib2?

python http urllib2 keep-alive
How to change tcp keepalive timer using python script?

In my python script, I have activate TCP Keepalive using this command: x = s.setsockopt( socket.SOL_SOCKET, socket.SO_…

python tcp keep-alive
Proper use of KeepAlive in Apache Htaccess

What is the difference between: Header set Connection keep-alive and KeepAlive on in Apache htaccess? What code and options we …

apache .htaccess header keep-alive
How does Keep-alive work with ThreadPoolExecutor?

In continuation to a question posted by me, I'm trying to use ThreadPoolExecutor in my codebase. Even after repeated attempts …

java multithreading keep-alive
Relation between HTTP Keep Alive duration and TCP timeout duration

I am trying to understand the relation between TCP/IP and HTTP timeout values. Are these two timeout values different …

http tcp keep-alive
JSch: How to keep the session alive and up

I'm writing Java GUI program for static route management using SSH. My code is as follows: import com.jcraft.jsch.*; …

java session ssh jsch keep-alive