From: Michael Vogel Date: Fri, 11 Mar 2016 19:32:22 +0000 (+0100) Subject: The table optimisation level calculation is now using the index size as well X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=2718c8150f614e6d5c76f91d46f4ebb28e440124;p=friendica.git The table optimisation level calculation is now using the index size as well --- diff --git a/include/cron.php b/include/cron.php index d68bd7f084..db7d44be0b 100644 --- a/include/cron.php +++ b/include/cron.php @@ -357,7 +357,7 @@ function cron_clear_cache(&$a) { continue; // Calculate fragmentation - $fragmentation = $table["Data_free"] / $table["Data_length"]; + $fragmentation = $table["Data_free"] / ($table["Data_length"] + $table["Index_length"]); logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);