Sokil\Mongo\Collection::getReadPreference PHP Method

getReadPreference() public method

public getReadPreference ( )
    public function getReadPreference()
    {
        return $this->getMongoCollection()->getReadPreference();
    }

Usage Example

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());
 }