getReadPreference() public method

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