我目前有一个需要访问三个数据库表的 ZF2 模块。没有其他模块需要访问这些表。
所以我的问题是(请考虑性能)我是否真的应该像我一直在做的那样将工厂添加到 Module.php 中:
/**
* Service Configuration
*
* @return array
*/
public function getServiceConfig()
{
return array(
'invokables' => array(
'Login\Service\Authenticate' => 'Login\Service\Authenticate',
'Login\Service\Oauth' => 'Login\Service\Oauth'
),
'factories' => array(
'Login\Form\Login' => function () {
$form = new Form\Login();
$form->setInputFilter(new FormFilter\Login());
return $form;
},
'Login\Model\GaclEmployeePermission' => function ($sm) {
return new Model\GaclEmployeePermission($sm->get('OTWebsoft\Db\Adapter\Master'), $sm->get('OTWebsoft\Db\Adapter\Slave'));
},
'Login\Model\Passport' => function ($sm) {
return new Model\Passport($sm->get('OTWebsoft\Db\Adapter\Master'), $sm->get('OTWebsoft\Db\Adapter\Slave'));
},
'Login\Model\PassportLog' => function ($sm) {
return new Model\PassportLog($sm->get('OTWebsoft\Db\Adapter\Master'), $sm->get('OTWebsoft\Db\Adapter\Slave'));
}
)
);
}
然后我有一个抽象类:
/**
* Table GaclEmployeePermission
*
* @return \Login\Model\GaclEmployeePermission
*/
protected function getTableGaclEmployeePermission()
{
return $this->getServiceManager()->get('Login\Model\GaclEmployeePermission');
}
或者我应该从 Module.php 中删除配置,然后在我的抽象类中执行以下操作:
/**
* Table GaclEmployeePermission
*
* @return \Login\Model\GaclEmployeePermission
*/
protected function getTableGaclEmployeePermission()
{
return new GaclEmployeePermission($this->getMasterAdapter(), $this->getSlaveAdapter());
}
两者的工作方式似乎完全相同。但是在性能方面,您会推荐哪个?请记住,这三个表不需要从除此之外的任何其他模块访问。