mirror of
https://github.com/friendica/friendica
synced 2024-11-13 03:42:53 +00:00
Don't optimize the tables when the maximum size is lower than zero
This commit is contained in:
parent
d49055c980
commit
783932000c
1 changed files with 24 additions and 22 deletions
|
@ -335,6 +335,7 @@ function cron_clear_cache(&$a) {
|
|||
if ($max_tablesize == 0)
|
||||
$max_tablesize = 100 * 1000000; // Default are 100 MB
|
||||
|
||||
if ($max_tablesize > 0) {
|
||||
// Minimum fragmentation level in percent
|
||||
$fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
|
||||
if ($fragmentation_level == 0)
|
||||
|
@ -365,6 +366,7 @@ function cron_clear_cache(&$a) {
|
|||
logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
|
||||
q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
|
||||
}
|
||||
}
|
||||
|
||||
set_config('system','cache_last_cleared', time());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue