gpt4 book ai didi

php - 页面加载时间超过一分钟 Mysql 和 Codeigniter

转载 作者:行者123 更新时间:2023-11-29 17:48:52 26 4
gpt4 key购买 nike

我的项目中存在页面加载时间问题。我的表中有近 30000 条记录,并在该表上执行搜索功能,代码工作正常,但页面加载时间非常长(超过一分钟)。获取结果后,我已经在ajax中完成了分页,Ajax请求也花费了太多时间(超过一分钟)下面是我的代码,请提出任何建议来克服该问题。

 public function get_data($info,$limit,$offset=0){
if(!is_array($info) && count($info)<1) return false;
try{
$orderbyString = "";
$likestr = "";$or='';$plus='';
if(isset($info['skill'])){
foreach($info['skill'] as $key => $val){
if($key!=0){$or=' OR ';$plus=' + ';}
$orderbyString .=" ".$plus." (( CHAR_LENGTH(r.resume) - CHAR_LENGTH( REPLACE ( r.resume, '".strtolower($val)."', '') ) ) / CHAR_LENGTH('".strtolower($val)."')) ";
}
$wholeString="ROUND ( ".$orderbyString." ) AS res_count ";
}
$this->db->select('r.resume_id, r.jobseeker_id, r.qualification, r.firstname, r.lastname, r.skills as skill_title, r.jobtitle, r.resume_date as last_updated_date, r.jobtype, r.location as city, r.country as state, r.workstatus, r.salary, r.experience, '.$wholeString.' ');
$this->db->from('jp_resumes as r');
$this->db->where('r.resume_status','1');

if(isset($info['time_period']) && $info['time_period']!=='' && count($info['time_period'])>0 ){
$date = date_create_from_format('m-d-Y', $info['time_period'][0]);
$start_d=date_format($date, 'Y-m-d');
$dates = date_create_from_format('m-d-Y', $info['time_period'][1]);
$end_d=date_format($dates, 'Y-m-d');
$arr_two=array('r.resume_date >= '=>$start_d,'r.resume_date <= '=>$end_d);
$this->db->group_start();
$this->db->where($arr_two);
$this->db->group_end();
}
if(isset($info['skill'])){
//print_r($info['skill']);exit;
$this->db->group_start();
foreach($info['skill'] as $key => $val){
$arr_two=array('r.skills'=>$val,'r.jobtitle'=>$val,'r.resume'=>$val);
$this->db->or_like($arr_two);
}
$this->db->group_end();
}
if(isset($info['work']) && is_array($info['work']) && count($info['work'])>0 ){
$this->db->group_start();
foreach($info['work'] as $key => $val){
$arr_two=array('r.workstatus'=>$val);
$this->db->or_like($arr_two);
}
$this->db->group_end();
}
if(isset($info['jobtype']) && $info['jobtype']!=='' && count($info['jobtype'])>0 && $info['jobtype'][0] !== ''){
$this->db->group_start();
foreach($info['jobtype'] as $key => $val){
$arr_two=array('r.jobtype'=>$val,'r.emp_type'=>$val);
$this->db->or_like($arr_two);
}
$this->db->group_end();
}
if(isset($info['state']) && count($info['state'])>0 && $info['state']!=''){
$this->db->group_start();
foreach($info['state'] as $key=>$val){
$arr_one=array('r.country'=>$val);
$this->db->or_like($arr_one);
}
$this->db->group_end();
}
$this->db->order_by('res_count','desc');
$this->db->limit($limit,$offset);

$query = $this->db->get();
if($query === false){
log_message('debug',__FUNCTION__." -> ".mysql_error());
}else{
if($query->num_rows() > 0)
return $query->result();
}
}catch(Exception $e){
log_message('error',$e->getMessage());
}
}

最佳答案

我在 mysql 和 codeigniter 中遇到了性能问题,我最终发现 DNS 名称查找超时是问题所在。

我使用的是centos,在我的/etc/resolv.conf(DNS服务器配置)中有一些无法访问的IP。 MySQL 服务器尝试使用这些 IP 查找名称,但发生超时。

我将skip-name-resolve添加到/etc/my.cnf并重新启动mysql服务并修复性能问题。

关于php - 页面加载时间超过一分钟 Mysql 和 Codeigniter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49572496/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com