Skip to content

Commit

Permalink
Lower memcached timeout to 250ms
Browse files Browse the repository at this point in the history
  • Loading branch information
paladox authored Oct 23, 2023
1 parent c724251 commit fc0805d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions GlobalCache.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
'retry_timeout' => -1,
'loggroup' => 'memcached',
// 500ms, in microseconds
'timeout' => 1 * 1e6,
'timeout' => 0.25 * 1e6,
];

// mem131
Expand All @@ -32,7 +32,7 @@
'retry_timeout' => -1,
'loggroup' => 'memcached',
// 500ms, in microseconds
'timeout' => 1 * 1e6,
'timeout' => 0.25 * 1e6,
];

$wgObjectCaches['mysql-multiwrite'] = [
Expand Down Expand Up @@ -114,7 +114,7 @@
'retry_timeout' => -1,
'loggroup' => 'memcached',
// 500ms, in microseconds
'timeout' => 1 * 1e6,
'timeout' => 0.5 * 1e6,
];

$redisServerIP = '[2a10:6740::6:406]:6379';
Expand Down

0 comments on commit fc0805d

Please sign in to comment.