MongoDB\Driver\Server::getInfo

(mongodb >=1.0.0)

MongoDB\Driver\Server::getInfoReturns an array of information about this server

Descrição

final public MongoDB\Driver\Server::getInfo ( ) : array

Returns an array of information about this server.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Returns an array of information about this server.

Erros

Exemplos

Exemplo #1 MongoDB\Driver\Server::getInfo() example

<?php

$manager 
= new MongoDB\Driver\Manager("mongodb://localhost:27017/");

$rp = new MongoDB\Driver\ReadPreference(MongoDB\Driver\ReadPreference::RP_PRIMARY);
$server $manager->selectServer($rp);

var_dump($server->getInfo());

?>

O exemplo acima irá imprimir algo similar à:

array(8) {
  ["isWritablePrimary"]=>
  bool(true)
  ["maxBsonObjectSize"]=>
  int(16777216)
  ["maxMessageSizeBytes"]=>
  int(48000000)
  ["maxWriteBatchSize"]=>
  int(1000)
  ["localTime"]=>
  object(MongoDB\BSON\UTCDateTime)#4 (1) {
    ["milliseconds"]=>
    int(1447276242774)
  }
  ["maxWireVersion"]=>
  int(3)
  ["minWireVersion"]=>
  int(0)
  ["ok"]=>
  float(1)
}
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top