Sokil\Mongo\Database::readNearest PHP Метод

readNearest() публичный Метод

public readNearest ( array $tags = null )
$tags array
    public function readNearest(array $tags = null)
    {
        $this->getMongoDB()->setReadPreference(\MongoClient::RP_NEAREST, $tags);
        return $this;
    }

Usage Example

Пример #1
0
 public function testReadNearest(array $tags = null)
 {
     $this->database->readNearest(array(array('dc' => 'kyiv'), array('dc' => 'lviv')));
     $this->assertEquals(array('type' => \MongoClient::RP_NEAREST, 'tagsets' => array(array('dc' => 'kyiv'), array('dc' => 'lviv'))), $this->database->getReadPreference());
 }