如何使用codeigniter关闭mysql中的打开连接

时间:2017-08-24 14:06:07

标签: codeigniter mysqli

我只是想知道如何关闭来自mysql的所有打开的连接,并且它会提高我的网站的速度。

请看一下mysql状态输出

Variable_name     Value
Aborted_connects    1
Connection_errors_accept    0
Connection_errors_internal    0
Connection_errors_max_connections    0
Connection_errors_peer_address    0
Connection_errors_select    0
Connection_errors_tcpwrap    0
Connections    252
Max_used_connections    6
Performance_schema_session_connect_attrs_lost    0
Ssl_client_connects    0
Ssl_connect_renegotiates    0
Ssl_finished_connects    0
Threads_connected    1

我在我的项目中使用code-igniter v3,并在database.php中使用以下数据库设置

$active_group = 'default';
$query_builder = TRUE;

$db['default'] = array(
    'dsn'   => '',
    'hostname' => 'localhost',
    'username' => 'root',
    'password' => '#######',
    'database' => '#######',
    'dbdriver' => 'mysqli',
    'dbprefix' => '',
    'pconnect' => FALSE,
    'db_debug' => (ENVIRONMENT !== 'production'),
    'cache_on' => FALSE,
    'cachedir' => '',
    'char_set' => 'utf8',
    'dbcollat' => 'utf8_general_ci',
    'swap_pre' => '',
    'encrypt' => FALSE,
    'compress' => FALSE,
    'stricton' => FALSE,
    'failover' => array(),
    'save_queries' => TRUE
);

1 个答案:

答案 0 :(得分:0)

你不应该做任何事情。

我相信Codeigniter / MySQL将为您关闭连接,因为您没有启用持久连接(' pconnect' => FALSE)这将允许连接自动关闭。

https://codeigniter.com/user_guide/database/connecting.html#manually-closing-the-connection

  

虽然CodeIgniter会智能地关闭数据库连接,但您可以显式关闭连接。

     

$这 - > DB->关闭();