PHP Classes

File: conf/production/db.php

Recommend this page to a friend!
  Classes of Fernando Val   Springy   conf/production/db.php   Download  
File: conf/production/db.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Springy
Microframework for Web application development
Author: By
Last change:
Date: 1 month ago
Size: 685 bytes
 

Contents

Class file image Download
<?php

/*
 * Springy Framework Configuration File.
 *
 * Used for "production" environment.
 *
 * If removed, only conf/db.conf.php will be used.
 */

return [
   
'round_robin' => [
       
'type' => 'memcached',
       
'server_addr' => 'youmemcachedserver.localnetwork',
       
'server_port' => 11211,
    ],
   
'cache' => [
       
'type' => 'off',
       
'server_addr' => 'youmemcachedserver.localnetwork',
       
'server_port' => 11211,
    ],
   
'default' => [
       
'database_type' => 'mysql',
       
'host_name' => '',
       
'user_name' => '',
       
'password' => '',
       
'database' => '',
       
'charset' => 'utf8',
       
'persistent' => false,
    ],
];