'default', /** * Base PDO config */ 'default' => array( 'type' => 'pdo', 'connection' => array( 'dsn' => '', 'hostname' => '', 'username' => null, 'password' => null, 'database' => '', 'persistent' => false, 'compress' => false, ), 'identifier' => '`', 'table_prefix' => '', 'charset' => 'utf8', 'collation' => false, 'enable_cache' => true, 'profiling' => false, 'readonly' => false, ), /** * Base MySQLi config * 'default' => array( 'type' => 'mysqli', 'connection' => array( 'dsn' => '', 'hostname' => '', 'username' => null, 'password' => null, 'database' => '', 'persistent' => false, 'compress' => false, ), 'identifier' => '`', 'table_prefix' => '', 'charset' => 'utf8', 'collation' => false, 'enable_cache' => false, 'profiling' => false, 'readonly' => false, ), */ /** * Base Redis config */ 'redis' => array( 'default' => array( 'hostname' => '127.0.0.1', 'port' => 6379, 'timeout' => null, 'database' => 0, ), ), );