Merge pull request #22308 from owncloud/shorter-ttl-find-path

Shorter TTL on  findBinaryPath caching
This commit is contained in:
Thomas Müller 2016-02-11 14:02:24 +01:00
commit 27a4c9f625
1 changed files with 2 additions and 1 deletions

View File

@ -583,7 +583,8 @@ class OC_Helper {
}
}
}
$memcache->set($program, $result, 3600);
// store the value for 5 minutes
$memcache->set($program, $result, 300);
return $result;
}