Add config value for cache gc ttl

This commit is contained in:
Frederik Kammer 2016-03-22 16:49:14 +01:00 committed by Vincent Petry
parent f7d102ccc5
commit 299520b322
No known key found for this signature in database
GPG Key ID: AF8F9EFC56562186
2 changed files with 9 additions and 1 deletions

View File

@ -969,6 +969,14 @@ $CONFIG = array(
*/
'cache_path' => '',
/**
* TTL of files located in the cache folder before they're removed by
* garbage collection (in seconds). Increase this value if users have
* issues uploading very large files via the ownCloud Client as upload isn't
* completed within one day.
*/
'cache_folder_gc_ttl' => 86400, // 60*60*24 = 1 day
/**
* Using Object Store with ownCloud
*/

View File

@ -111,7 +111,7 @@ class File implements ICache {
$keyPart = $key . '.' . $uniqueId . '.part';
if ($storage and $storage->file_put_contents($keyPart, $value)) {
if ($ttl === 0) {
$ttl = 86400; // 60*60*24
$ttl = \OC::$server->getConfig()->getSystemValue('cache_folder_gc_ttl', 86400);
}
$result = $storage->touch($keyPart, time() + $ttl);
$result &= $storage->rename($keyPart, $key);