Lines Matching refs:to

9 is to manage this set of unruly connections and try to provide the best behavior 
10 to the client.
12 If a connection pool is unable to find an alive node to query against, it
13 returns a `NoNodesAvailableException`. This is distinct from an exception due to
15 request and 9 out of the 10 nodes fail due to connection timeouts. The tenth
20 When the next request is sent to the client, nodes 1-9 are still considered
21 "dead", so they are skipped. The request is sent to the only known alive node
24 applies to retries against alive nodes. In this case, only one node is known to
33 This connection pool maintains a static list of hosts which are assumed to be
37 dead timeout to increase exponentially.
41 If you wish to explicitly set the `StaticNoPingConnectionPool` implementation,
51 Note that the implementation is specified via a namespace path to the class.
57 Identical to the `StaticNoPingConnectionPool`, except it pings nodes before they
58 are used to determine if they are alive. This may be useful for long-running
59 scripts but tends to be additional overhead that is unnecessary for average PHP
71 Note that the implementation is specified via a namespace path to the class.
93 Note that the implementation is specified via a namespace path to the class.
100 provides a seed list of hosts, which the client uses to "sniff" and discover the
113 Note that the implementation is specified via a namespace path to the class.
119 If you wish to implement your own custom Connection Pool, your class must
162 choose to go down this route, you need to make sure your ConnectionPool
212 ==== Which connection pool to choose? PHP and connection pooling
217 Because PHP is a share-nothing architecture, there is no way to maintain a
222 Sniffing is a relatively lightweight operation (one API call to
223 `/_cluster/state`, followed by pings to each node) but it may be a
231 _too_ robust. It tends to be more useful in long-lived processes which
236 strongly recommend you to perform load test and to verify that the change does