Merge pull request #3640 from martinbean/patch-1
[5.2] Make Memcached options configurable.
This commit is contained in:
commit
01e3d8f288
|
@ -51,7 +51,9 @@
|
|||
'driver' => 'memcached',
|
||||
'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,
|
||||
],
|
||||
],
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue