我有一张表,其中包含来自 MySQL-PHP 的 7500 多行数据。该应用程序基于 Codeigniter 3 构建。我没有使用 DataTables。但是,每次页面加载时,渲染时间都超过 15 秒。我曾尝试使用页面缓存,但即使使用浏览器的后退按钮也会从头开始加载页面。
控制器方法:
public function index() {
$data['title'] = 'Patient List';
$data['patient'] = $this->patient_model->get_patients();
if(isset($_SESSION['patientChanged'])) {
if($_SESSION['patientChanged'] == 1) {
$this->output->delete_cache();
$this->output->cache(10);
$_SESSION['patientChanged'] == NULL;
}
}
$this->load->view('templates/header', $data);
$this->load->view('patient_list');
$this->load->view('templates/footer');
}
public function insert() {
$result = $this->patient_model->insert_patient();
$_SESSION['patientChanged'] = 1;
redirect ('patient/view/'.$result);
}
有没有办法优化这个?页面加载时间可以减少到 5 秒以下吗?
吃鸡游戏