Skip to content

Commit feeaa30

Browse files
committed
formatting
1 parent 8a82b3d commit feeaa30

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

redis.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The Redis configuration for your application is located in the `config/database.
4646

4747
],
4848

49-
The default server configuration should suffice for development. However, you are free to modify this array based on your environment. Each Redis server defined in your configuration file is required to have a name, host, and port, unless you define a single URL:
49+
The default server configuration should suffice for development. However, you are free to modify this array based on your environment. Each Redis server defined in your configuration file is required to have a name, host, and port unless you define a single URL to represent the Redis connection:
5050

5151
'redis' => [
5252

@@ -57,7 +57,7 @@ The default server configuration should suffice for development. However, you ar
5757
],
5858

5959
'cache' => [
60-
'url' => 'tls://h:secret-[email protected]:6380?database=1',
60+
'url' => 'tls://user:[email protected]:6380?database=1',
6161
],
6262

6363
],
@@ -137,7 +137,7 @@ If you plan to use PhpRedis extension along with the `Redis` Facade alias, you s
137137

138138
'RedisManager' => Illuminate\Support\Facades\Redis::class,
139139

140-
In addition to the default `host`, `port`, `database`, and `password` server configuration options, PhpRedis supports the following additional connection parameters: `persistent`, `prefix`, `read_timeout`, `timeout` and `context`. You may add any of these options to your Redis server configuration in the `config/database.php` configuration file:
140+
In addition to the default `host`, `port`, `database`, and `password` server configuration options, PhpRedis supports the following additional connection parameters: `persistent`, `prefix`, `read_timeout`, `timeout`, and `context`. You may add any of these options to your Redis server configuration in the `config/database.php` configuration file:
141141

142142
'default' => [
143143
'host' => env('REDIS_HOST', 'localhost'),

0 commit comments

Comments
 (0)