@@ -515,29 +515,30 @@ public function role($role, $bucket = NULL) {}
515
515
* Represents connection to the Couchbase Server
516
516
*
517
517
* @property int $operationTimeout
518
- * The operation timeout is the maximum amount of time the library will wait
519
- * for an operation to receive a response before invoking its callback with
520
- * a failure status.
518
+ * The operation timeout (in microseconds) is the maximum amount of time the
519
+ * library will wait for an operation to receive a response before invoking
520
+ * its callback with a failure status.
521
521
*
522
522
* An operation may timeout if:
523
523
*
524
524
* * A server is taking too long to respond
525
525
* * An updated cluster configuration has not been promptly received
526
526
*
527
527
* @property int $viewTimeout
528
- * The I/O timeout for HTTP requests to Couchbase Views API
528
+ * The I/O timeout (in microseconds) for HTTP requests to Couchbase Views API
529
529
*
530
530
* @property int $n1qlTimeout
531
- * The I/O timeout for N1QL queries.
531
+ * The I/O timeout (in microseconds) for N1QL queries.
532
532
*
533
533
* @property int $httpTimeout
534
- * The I/O timeout for HTTP queries (management API).
534
+ * The I/O timeout (in microseconds) for HTTP queries (management API).
535
535
*
536
536
* @property int $configTimeout
537
- * How long the client will wait to obtain the initial configuration.
537
+ * How long (in microseconds) the client will wait to obtain the initial
538
+ * configuration.
538
539
*
539
540
* @property int $configNodeTimeout
540
- * Per-node configuration timeout.
541
+ * Per-node configuration timeout (in microseconds) .
541
542
*
542
543
* This timeout sets the amount of time to wait for each node within
543
544
* the bootstrap/configuration process. This interval is a subset of
@@ -558,7 +559,7 @@ public function role($role, $bucket = NULL) {}
558
559
* timeout setting, then this value is likely optimal.
559
560
*
560
561
* @property int $htconfigIdleTimeout
561
- * Idling/Persistence for HTTP bootstrap
562
+ * Idling/Persistence for HTTP bootstrap (in microseconds)
562
563
*
563
564
* By default the behavior of the library for HTTP bootstrap is to keep
564
565
* the stream open at all times (opening a new stream on a different host
@@ -576,12 +577,13 @@ public function role($role, $bucket = NULL) {}
576
577
* the client) then a new stream is not opened.
577
578
*
578
579
* @property int $durabilityInterval
579
- * The time the client will wait between repeated probes to a given server.
580
+ * The time (in microseconds) the client will wait between repeated probes
581
+ * to a given server.
580
582
*
581
583
* @property int $durabilityTimeout
582
- * The time the client will spend sending repeated probes to a given key's
583
- * vBucket masters and replicas before they are deemed not to have satisfied
584
- * the durability requirements
584
+ * The time (in microseconds) the client will spend sending repeated probes
585
+ * to a given key's vBucket masters and replicas before they are deemed not
586
+ * to have satisfied the durability requirements
585
587
*
586
588
* @see https://developer.couchbase.com/documentation/server/current/sdk/php/start-using-sdk.html
587
589
* Start Using SDK
0 commit comments