]> git.mxchange.org Git - friendica.git/commitdiff
Changed documentation
authorMichael <heluecht@pirati.ca>
Sat, 17 Jun 2017 19:13:40 +0000 (19:13 +0000)
committerMichael <heluecht@pirati.ca>
Sat, 17 Jun 2017 19:13:40 +0000 (19:13 +0000)
doc/database/db_workerqueue.md
include/poller.php

index 8ab68466be9f02a9e03467a6a20ec95c00cb8b03..182358a4c468a3452174c574f454a7eec2db2425 100644 (file)
@@ -9,5 +9,6 @@ Table workerqueue
 | created   |                  | datetime            | NO   | MUL | 0001-01-01 00:00:00 |                |
 | pid       |                  | int(11)             | NO   |     | 0                   |                |
 | executed  |                  | datetime            | NO   |     | 0001-01-01 00:00:00 |                |
+| done      | set to 1 if done | tinyint(1)          | NO   |     | 0                   |                |
 
 Return to [database documentation](help/database)
index 55aa82a3f5d8b6a5c72c0602289f0bab6475feb1..29a31a96f8b15b6f1139565010790549dd3a4965 100644 (file)
@@ -279,7 +279,7 @@ function poller_exec_function($queue, $funcname, $argv) {
 
        $poller_up_start = microtime(true);
 
-       /** With these values we can analyze how effective the worker is.
+       /* With these values we can analyze how effective the worker is.
         * The database and rest time should be low since this is the unproductive time.
         * The execution time is the productive time.
         * By changing parameters like the maximum number of workers we can check the effectivness.