tinyredisclient
tinyredisclient copied to clipboard
STREAM_CLIENT_PERSISTENT
I found out that if you change line 43 from:
: ($this->socket = stream_socket_client($this->server));
to
: ($this->socket = stream_socket_client($this->server, $errorno, $errorstr, NULL, STREAM_CLIENT_PERSISTENT));
connection will stay alive and it will work much faster in sequential requests.