Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
open-source
MetaGer
Commits
1bd9929e
Commit
1bd9929e
authored
Nov 27, 2019
by
Dominik Hebeler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed obsolete redis connection
parent
d4e133d3
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
18 deletions
+18
-18
config/cache.php
config/cache.php
+18
-18
No files found.
config/cache.php
View file @
1bd9929e
...
...
@@ -28,49 +28,49 @@ return [
|
*/
'stores'
=>
[
'stores'
=>
[
'apc'
=>
[
'apc'
=>
[
'driver'
=>
'apc'
,
],
'array'
=>
[
'array'
=>
[
'driver'
=>
'array'
,
],
'database'
=>
[
'driver'
=>
'database'
,
'table'
=>
'cache'
,
'database'
=>
[
'driver'
=>
'database'
,
'table'
=>
'cache'
,
'connection'
=>
null
,
],
'file'
=>
[
'file'
=>
[
'driver'
=>
'file'
,
'path'
=>
storage_path
(
'framework/cache'
),
'path'
=>
storage_path
(
'framework/cache'
),
],
'memcached'
=>
[
'driver'
=>
'memcached'
,
'driver'
=>
'memcached'
,
'persistent_id'
=>
env
(
'MEMCACHED_PERSISTENT_ID'
),
'sasl'
=>
[
'sasl'
=>
[
env
(
'MEMCACHED_USERNAME'
),
env
(
'MEMCACHED_PASSWORD'
),
],
'options'
=>
[
'options'
=>
[
// Memcached::OPT_CONNECT_TIMEOUT => 2000,
],
'servers'
=>
[
'servers'
=>
[
[
'host'
=>
env
(
'MEMCACHED_HOST'
,
'127.0.0.1'
),
'port'
=>
env
(
'MEMCACHED_PORT'
,
11211
),
'host'
=>
env
(
'MEMCACHED_HOST'
,
'127.0.0.1'
),
'port'
=>
env
(
'MEMCACHED_PORT'
,
11211
),
'weight'
=>
100
,
],
],
],
'redis'
=>
[
'driver'
=>
'redis'
,
'connection'
=>
'
redisCache
'
,
'redis'
=>
[
'driver'
=>
'redis'
,
'connection'
=>
'
default
'
,
],
],
...
...
@@ -86,6 +86,6 @@ return [
|
*/
'prefix'
=>
'laravel'
,
'prefix'
=>
'laravel'
,
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment