]> git.mxchange.org Git - quix0rs-gnu-social.git/commit
Cron plugin added and now default queue handler
authorMikael Nordfeldth <mmn@hethane.se>
Tue, 19 Nov 2013 13:13:33 +0000 (14:13 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Tue, 19 Nov 2013 13:13:33 +0000 (14:13 +0100)
commit0cd93c276136f849070b05965cf681734f7b9f09
treec73aef2e8df4bd176d8f3292710cb4a4239b753d
parent599882545808d45c6402f3ccde2dbae7b78049a6
Cron plugin added and now default queue handler

Generally the Cron plugin will run if there's still execution time for
1 second since starting the Action processing. If you want to change
this (such as disabling, 0 seconds, or maybe running bigger chunks,
for like 4 seconds) you can do this, where 'n' is time in seconds.

   addPlugin('Cron', array('secs_per_action', n));

Add 'rel_to_pageload'=>false to the array if you want to run the queue
for a certain amount of seconds _despite_ maybe already having run that
long in the previous parts of Action processing.

Perhaps you want to run the cron script remotely, using a machine capable
of background processing (or locally, to avoid running daemon processes),
simply do an HTTP GET request to the route /main/cron of your GNU social.
Setting secs_per_action to 0 in the plugin config will imply that you run
all your queue handling by calling /main/cron (which runs as long as it can).

/main/cron will output "0" if it has finished processing, "1" if it should
be called again to complete processing (because it ran out of time due to
PHP's max_execution_time INI setting).

The Cron plugin also runs events as close to hourly, daily and weekly
as you get, based on the opportunistic method of running whenever a user
visits the site. This means of course that the cron events should be as
fast as possible, not only to avoid delaying page load for users but
also to minimize the risk of running into PHP's max_execution_time. One
suggestion is to only use the events to add new queue items for later processing.

These events are called CronHourly, CronDaily, CronWeekly - however there
is no guarantee that all events will execute, so some kind of failsafe,
transaction-ish method must be implemented in the future.
EVENTS.txt
lib/action.php
lib/default.php
lib/queuemanager.php
scripts/getvaliddaemons.php