优化Code​​igniter查询

时间:2018-10-04 20:07:59

标签: php mysql codeigniter

我有一张至少有650,000条记录的表,并且将增加到1500万条以上的记录。我只是想知道为什么为什么要花大约8-14秒钟才能加载某些页面,特别是在搜索时以及将page_id(pagination)指向最后一页时,考虑到查询是非常有限的。

型号:

function fetch_persons($limit, $id, $search, $district = null, $city = null) {

        if($search) {
            $this->db->group_start();
            $this->db->like('persons.fullname', $search, 'after');
            $this->db->group_end();                
        }


        if(!is_null($district)) {
            $this->db->where('persons.district_code', $district);
        }
        if(!is_null($city)) {
            $this->db->where('persons.city_code', $city);
        }
        if(!is_null($barangay)) {
            $this->db->where('persons.brgy_code', $barangay);
        }

         $this->db->select('
            persons.id,
            persons.fullname,
            persons.address,
            persons.sex,                
            persons.deceased,   
            city.name as city,          
            district.name as district,                  
          ');        

        $this->db->join('city', 'city.code = persons.city_code', 'left');
        $this->db->join('district', 'district.code = persons.district_code', 'left');
        $this->db->limit($limit, (($id-1)*$limit));
        $this->db->order_by('persons.id', 'ASC');

        $query = $this->db->get("persons");

        if ($query->num_rows() > 0) {
            return $query->result_array();
        }
        return false;

}

我尝试了$this->db->cache_on();,但这对我没有好处。

进行searchLIKE时是否处理了所有数据? 和limit 100, 6000一样?

哪些方法可以更好地优化查询?

有哪些替代解决方案?

1 个答案:

答案 0 :(得分:0)

您是否尝试建立数据库索引?如果不这样做,应该节省大约80%的页面加载时间。