PHP と codeigniter を学習するために、テスト Web サイトの作成を開始しました...ブログのようなものです。それはポイントではありません。ブログのすべての投稿を表示するために codeigniter ページネーションを使用しています。しかし... データベース テーブル (投稿) のエントリ数が 14,000 を超えると、処理速度が低下し始めます.. そして、次のような回答は必要ありません。それについて考えないでください」...これらすべてのものを高速化する方法の実際の解決策が必要です。
コントローラーは次のとおりです。
function all()
{
// Pagination $config
$config = $this->m_posts->getPaginationConfig('all', $this->m_posts->getPostsCount());
$this->pagination->initialize($config);
$data['posts'] = $this->m_posts->getAllPosts($config['per_page'], $page);
$data['pagination'] = $this->pagination->create_links();
$this->template->build('posts/posts', $data);
}
モデル:
function getPaginationConfig($base_url, $total_rows)
{
$config['base_url'] = base_url() . 'posts/'. $base_url;
$config['total_rows'] = $total_rows;
// ----
$config['per_page'] = 10;
$config['num_links'] = 5;
$config['use_page_numbers'] = TRUE;
$config['uri_segment'] = 3;
return $config;
}
function getPostsCount($limit)
{
$this->db->order_by('id', 'desc');
$q = $this->db->get('posts');
return $q->num_rows();
}
function getAllPosts($limit = 0, $start = 0)
{
$this->db->order_by('id', 'desc');
$this->db->where('active', 1);
// Get LATEST posts -> pagination
$q = $this->db->get('posts', $limit, $start);
$array = $q->result_array();
$data = $this->createPostsArray($array);
return $data;
}
function createPostsArray($array)
{
foreach ($array as $key => $row)
{
$array[$key]['usr_info'] = $this->user->getUserData($row['usr_id'], 'nickname');
$this->load->helper('cat_helper');
$array[$key]['cat_ids'] = explodeCategories($row['cat_ids']);
foreach ($array[$key]['cat_ids'] as $numb => $value)
{
$array[$key]['categories'][$numb] = $this->getCategoryName($value);
}
}
return $array;
}