我不知道如何处理这个问题。在我的应用程序(Zend Framework,MySQL,jQuery)中,其中一个页面需要10秒以上才能加载。
它从数据库加载了400条记录,因此我认为瓶颈不在MySQL中。当然,相关表上的服务器端选择不是问题:
379 rows in set (0.00 sec)
Firebug报告在原始请求中等待服务器响应的延迟,“0 ---> 11.09s等待”。这是第一个请求,之后加载了所有jQuery代码,onLoad时间为11.54s。所以jQuery似乎也不是瓶颈。
没有其他控制器/动作在这么长的时间内响应,所以我无法想象这是一个Apache问题。这留下了ZF本身。
我想知道是否有办法测试延迟发生的位置。以下是相关行动的全文:
public function listAction()
{
$userDepts = new Application_Model_DbTable_UserDepartments;
$ptcpDepts = new Application_Model_DbTable_ParticipantDepts;
$participants = new Application_Model_DbTable_Participants;
$depts = new Application_Model_DbTable_Depts;
$ptcpAlerts = new Application_Model_DbTable_AlertsParticipants;
//check if sub-list is being passed
if ($this->_helper->flashMessenger->getMessages()) {
$passedList = $this->_helper->flashMessenger->getMessages();
$list = $passedList['0'];
} else {
$list = $participants->getStaffPtcps();
}
$goodList = array_unique($list);
$number = count($goodList);
$content = array();
foreach ($goodList as $id) {
$deptNames = array();
$ptcpInfo = $participants->getRecord($id);
$ptcpDept = $ptcpDepts->getList('depts', $id);
$flags = $ptcpAlerts->getPtcpAlerts($id);
if (count($flags) > 0) {
$flagTest = TRUE;
} else {
$flagTest = FALSE;
}
foreach ($ptcpDept as $did) {
$deptName = $depts->getDept($did);
$deptNames[$did] = $deptName['deptName'];
}
$content[$id] = $ptcpInfo;
$content[$id]['depts'] = $deptNames;
$content[$id]['flag'] = $flagTest;
}
foreach ($content as $c => $key) {
$sortLastName[] = $key['lastName'];
}
array_multisort($sortLastName, SORT_ASC, $content);
$this->view->list = $content;
$this->view->count = $number;
$this->view->layout()->customJS =
'<script type="text/javascript" src="/js/datePicker.js"></script>' .
'<script type="text/javascript" src="/js/ptcpCreate.js"></script>' .
'<script type="text/javascript" src="/js/editDataWithModal.js"></script>' .
'<script type="text/javascript" src="/js/filter.js"></script>';
$form = new Application_Form_AddParticipant;
$this->view->form = $form;
}
任何关于优化此代码的想法 - 或指向其他地方的指针 - 都将非常感激!
答案 0 :(得分:1)
嗯,我不知道你的自定义方法在做什么,但我会假设你正在做一个od db调用的音调:
$participants->getStaffPtcps();
获取初始列表$ptcpDepts->getList('depts', $id)
)如果这是正确的,那么您实际上在运行大量查询,具体取决于员工参与者和部门返回的记录数。除此之外,每次运行时都会为每个记录保留对象,除非您特别关闭了它。在很多情况下,这可能会使事情变得非常缓慢,你可以通过只使用Joins的几个查询来实现这一点,但我必须了解更多关于db模式以及你的方法正在做什么才能告诉你如何。
您还可以确保完全绕过Zend_Db_Table_Row和Zend_Db_Table_Rowset。