CronTab Scheduler
The CronPlugin makes the management and scheduling of tasks much easier within OpenBD.
Inspired from the simplicity of the popular *nix based system of /etc/cron.d/ subdirectories, this plugin brings the ease of that method to the CFML developer by allowing them to simply drop files into pre-defined folders that will be automatically run, without needing to wrestle with external scheduling jobs or CFSCHEDULE.
The plugin will automatically create the necessary directories if they do not already exist. You set this directory by making a call to CronSetDirectory(). This directory location will persist over server restarts.
For example making a call with:
<cfset CronSetDirectory("/cron.d")>will create the following directory structure within the web app directory.
/<webapproot>/ /<webapproot>/cron.d/cron.5min/ /cron.15min/ /cron.hourly/ /cron.daily/ /cron.weekly/ /cron.monthly/
After this, you can simply drop .cfm files into each of these directories and they will be run at the allocated time. There is no need to restart the engine, or re-call the CronSetDirectory(); it will automatically be picked up.
Each time the plugin executes one of these files at the desired time, a copy of the output is retained. Within the OpenBD working directory, a similiar structure is created but under the plugin-cron directory, where you can view the results of each file. In addition, the attempt to execute the file is recorded in the main bluedragon.log file.
This plugin triggers the main OpenBD CFML engine directly, without having to go out and back in via HTTP. This makes it highly efficient and removes a lot of the overhead associated with other schedule methods.
You may disable/enable the crontab scheduler using CronEnable() function, passing in true/false accordingly.
The plugin trigger will honor all Application.cfc/.cfm files that are in any directories or parent directories.