ファイルのリスト (約 6000 ファイル) を含むデータベースがあります。これらすべてのファイルには、特定の追加の詳細がリンクされています (プロジェクト番号、セクター、クライアント、コメント、分野など)。
コードと検索は機能しますが、非常に遅いです。2 つの用語による単純な検索は、完了するまでに約 1 分かかります。
私のコードは以下です。私が知りたいのは、検索機能を簡素化および最適化するにはどうすればよいかということです。
public function search() {
$Terms = explode(' ',$this->request->data['KmFiles']['search']);
$possible = 0;
$Matches = array();
foreach($Terms as $Term) {
$Files = $this->KmFile->find('list',
array(
'conditions' => array(
'file_name LIKE' => '%' . $Term . '%'
),
'fields' => array('id')
)
);
$possible++;
$Clients = $this->KmClient->find('list',
array(
'conditions' => array(
'clients LIKE' => '%' . $Term . '%'
),
'fields' => array('km_file_id')
)
);
$possible++;
$Disciplines = $this->KmDiscipline->find('list',
array(
'conditions' => array(
'disciplines LIKE' => '%' . $Term . '%'
),
'fields' => array('km_file_id')
)
);
$possible++;
$Projects = $this->KmProject->find('list',
array(
'conditions' => array(
'projects LIKE' => '%' . $Term . '%'
),
'fields' => array('km_file_id')
)
);
$possible++;
$Sectors = $this->KmSector->find('list',
array(
'conditions' => array(
'sectors LIKE' => '%' . $Term . '%'
),
'fields' => array('km_file_id')
)
);
$possible++;
$Comments = $this->KmComment->find('list',
array(
'conditions' => array(
'comments LIKE' => '%' . $Term . '%'
),
'fields' => array('km_file_id')
)
);
$possible++;
$Matches = array_merge($Matches,$Files,$Clients,$Disciplines,$Projects,$Sectors,$Comments);
}
if(count($Matches) > 0) {
$NumberOfMatches = array_count_values($Matches);
$Matches = array_unique($Matches);
$k=0;
foreach($Matches as $Match) {
$Result = $this->KmFile->find('all',
array(
'conditions' => array(
'id' => $Match
)
)
);
$Results[$k] = $Result[0];
$Results[$k]['Relevance'] = round(($NumberOfMatches[$Match] / $possible) * 100,2);
$relevance[] = $Results[$k]['Relevance'];
$k++;
}
array_multisort($relevance,SORT_DESC,$Results);
$Stats['Count'] = count($Results);
$Stats['Terms'] = $this->request->data['KmFiles']['search'];
$this->set(compact('Results','Stats'));
} else {
$Stats['Count'] = 0;
$Stats['Terms'] = $this->request->data['KmFiles']['search'];
$this->set(compact('Stats'));
}
}
私はそれが長いコードであることを知っていますが、私は CakePHP にかなり慣れていないので、それを改善するために何をすべきかわかりません。
任意の支援をいただければ幸いです。