Commit 01e3d8f2 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3640 from martinbean/patch-1

[5.2] Make Memcached options configurable.
parents ce7c1fed db6bb6a3
...@@ -51,7 +51,9 @@ return [ ...@@ -51,7 +51,9 @@ return [
'driver' => 'memcached', 'driver' => 'memcached',
'servers' => [ 'servers' => [
[ [
'host' => '127.0.0.1', 'port' => 11211, 'weight' => 100, 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
'port' => env('MEMCACHED_PORT', 11211),
'weight' => 100,
], ],
], ],
], ],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment