We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 212f912 commit b46345dCopy full SHA for b46345d
src/Dashboards/Memcached/PHPMem.php
@@ -183,7 +183,7 @@ public function getKeys(): array {
183
$dump_lines = explode("\n", $dump);
184
185
foreach ($dump_lines as $line) {
186
- if (preg_match('/ITEM (\S+) \[(\d+) b; (\d+) s\]/', $line, $matches)) {
+ if (preg_match('/ITEM (\S+) \[(\d+) b; (\d+) s]/', $line, $matches)) {
187
$exp = (int) $matches[3] === 0 ? -1 : (int) $matches[3];
188
// Intentionally formatted as lru_crawler output
189
$keys[] = 'key='.$matches[1].' exp='.$exp.' la=0 cas=0 fetch=no cls=1 size='.$matches[2];
0 commit comments