Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 8d9cf21

Browse files
committed
fix markup text
1 parent bb1bfd2 commit 8d9cf21

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.markdown

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Connects to a Redis instance or reuse a connection already established with `pco
9494

9595
The connection will not be closed on `close` or end of request until the php process ends.
9696
So be patient on to many open FD's (specially on redis server side) when using persistent
97-
connections on many servers connection to one redis server.
97+
connections on many servers connecting to one redis server.
9898

9999
Also more than one persistent connection can be made identified by either host + port + timeout
100100
or unix socket + timeout.
@@ -115,7 +115,7 @@ persistent equivalents.
115115
##### *Example*
116116

117117
$redis->pconnect('127.0.0.1', 6379);
118-
$redis->pconnect('127.0.0.1'); // port 6379 by default
118+
$redis->pconnect('127.0.0.1'); // port 6379 by default - same connection like before.
119119
$redis->pconnect('127.0.0.1', 6379, 2.5); // 2.5 sec timeout and would be another connection then the two before.
120120
$redis->pconnect('/tmp/redis.sock'); // unix domain socket - would be another connection then the three before.
121121

0 commit comments

Comments
 (0)