upgrade change log for redis database option.
This commit is contained in:
parent
6bf68aad38
commit
b2324a7575
12
changes.md
12
changes.md
|
|
@ -90,3 +90,15 @@ ### Update your **config/strings.php** file.
|
||||||
### Add the **fetch** option to your database configuration file.
|
### Add the **fetch** option to your database configuration file.
|
||||||
|
|
||||||
A new **fetch** option allows you to specify in which format you receive your database results. Just copy and paste the option from the new **application/config/database.php** file.
|
A new **fetch** option allows you to specify in which format you receive your database results. Just copy and paste the option from the new **application/config/database.php** file.
|
||||||
|
|
||||||
|
### Add **database** option to your Redis configuration.
|
||||||
|
|
||||||
|
If you are using Redis, add the "database" option to your Redis connection configurations. The "database" value can be zero by default.
|
||||||
|
|
||||||
|
'redis' => array(
|
||||||
|
'default' => array(
|
||||||
|
'host' => '127.0.0.1',
|
||||||
|
'port' => 6379,
|
||||||
|
'database' => 0
|
||||||
|
),
|
||||||
|
),
|
||||||
Loading…
Reference in New Issue