Changed documentation

This commit is contained in:
Michael 2017-06-17 19:13:40 +00:00
parent ec8a945189
commit fda4cd6001
2 changed files with 2 additions and 1 deletions

View File

@ -9,5 +9,6 @@ Table workerqueue
| created | | datetime | NO | MUL | 0001-01-01 00:00:00 | | | created | | datetime | NO | MUL | 0001-01-01 00:00:00 | |
| pid | | int(11) | NO | | 0 | | | pid | | int(11) | NO | | 0 | |
| executed | | datetime | NO | | 0001-01-01 00:00:00 | | | 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) Return to [database documentation](help/database)

View File

@ -279,7 +279,7 @@ function poller_exec_function($queue, $funcname, $argv) {
$poller_up_start = microtime(true); $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 database and rest time should be low since this is the unproductive time.
* The execution time is the productive time. * The execution time is the productive time.
* By changing parameters like the maximum number of workers we can check the effectivness. * By changing parameters like the maximum number of workers we can check the effectivness.