gnu-social/plugins/OpportunisticQM
Diogo Peralta Cordeiro 6e031d623a [VersionBump] 2.0.0beta0
Updated composer and translations

composer install --no-dev
composer dump-autoload --optimize
git add vendor/ --force
make updatepo
2021-07-18 12:49:17 +01:00
..
actions [OpportunisticQM] Revamped plugin to be able to use other poll based queuemanagers, no just the DB 2021-07-16 19:44:35 +01:00
lib [CORE] Use monotonic time via hrtime() where applicable 2021-07-16 19:44:36 +01:00
locale [VersionBump] 2.0.0beta0 2021-07-18 12:49:17 +01:00
OpportunisticQMPlugin.php [CORE] Add GNUSOCIAL_ENGINE_REPO_URL and increase usage of GNUSOCIAL_ENGINE_URL 2021-07-16 19:44:36 +01:00
README array need to contain key/value pairs 2016-01-14 12:39:39 +01:00

README

Generally the OpportunisticQM 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('OpportunisticQM', 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 start the queue handler remotely, using a machine capable 
of background processing (or locally, to avoid running PHP daemon processes), 
simply do an HTTP GET request to the route /main/runqueue 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/runqueue (which runs as long as it 
can).

/main/runqueue will output "0" if it has finished processing, "1" if it 
should be called again to complete processing (because it shut down to avoid
to PHP's max_execution_time INI setting).

The key-required functionality is not throughly tested yet, so testing 
would be appreciated.