]> git.mxchange.org Git - friendica.git/blobdiff - include/cron.php
Doxygen structure added
[friendica.git] / include / cron.php
index 1c3297c9322e87280ef114c552fbe9134a8fcc63..c60284b738a7d819f4c6f6e4601b7517a4032eb4 100644 (file)
@@ -43,7 +43,7 @@ function cron_run(&$argv, &$argc){
        if (App::callstack() != "poller_run") {
                if (App::maxload_reached())
                        return;
-               if (App::is_already_running('include/cron.php', 'cron', 540))
+               if (App::is_already_running('cron', 'include/cron.php', 540))
                        return;
        }
 
@@ -71,10 +71,6 @@ function cron_run(&$argv, &$argc){
 
        proc_run('php',"include/queue.php");
 
-       // run diaspora photo queue process in the background
-
-       proc_run('php',"include/dsprphotoq.php");
-
        // run the process to discover global contacts in the background
 
        proc_run('php',"include/discover_poco.php");
@@ -105,10 +101,10 @@ function cron_run(&$argv, &$argc){
 
        // Check OStatus conversations
        // Check only conversations with mentions (for a longer time)
-       check_conversations(true);
+       ostatus::check_conversations(true);
 
        // Check every conversation
-       check_conversations(false);
+       ostatus::check_conversations(false);
 
        // Set the gcontact-id in the item table if missing
        item_set_gcontact();
@@ -357,7 +353,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);