Skip to content

Commit

Permalink
upgrade change log for redis database option.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Mar 29, 2012
1 parent 6bf68aa commit b2324a7
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,4 +89,16 @@ English pluralization and singularization is now automatic. Just completely repl

### 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
),
),

0 comments on commit b2324a7

Please sign in to comment.