tinyredisclient icon indicating copy to clipboard operation
tinyredisclient copied to clipboard

STREAM_CLIENT_PERSISTENT

Open lexna opened this issue 10 years ago • 0 comments

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.

lexna avatar Apr 15 '15 18:04 lexna