getCollection() public method

Returns the MongoDB collection with the given name.
public getCollection ( string | array $name, boolean $refresh = false ) : Collection
$name string | array collection name. If string considered as the name of the collection inside the default database. If array - first element considered as the name of the database, second - as name of collection inside that database
$refresh boolean whether to reload the collection instance even if it is found in the cache.
return Collection Mongo collection instance.
Exemplo n.º 1
0
 protected function doBatchSave($name, $rows)
 {
     \Yii::trace("Batch save to '{$name}'", __METHOD__);
     $this->db->getCollection($name)->batchInsert($rows);
 }