http://www.perlmonks.org?node_id=544461


in reply to Re^2: Accessing cron job output from a web page?
in thread Accessing cron job output from a web page?

I had that thought with one of my pages. I take the middle road. Have the script check the age of the HTML file, and if it's more than X minutes old, recreate it from the log files, otherwise just show it. It saves CPU and time when many people are viewing the page at the same time, but still gives you almost current data.
  • Comment on Re^3: Accessing cron job output from a web page?

Replies are listed 'Best First'.
Re^4: Accessing cron job output from a web page?
by traveler (Parson) on Apr 19, 2006 at 22:26 UTC
    Kinda depends on how many users and how often they look. In my case I had fewer than ten users, but some looked every few minutes. At the end of the project, the page was set to do automatic refreshing because we had one user (these were project administrators) checking the logs every few seconds. With the refresh he was convinced it was "real time" :-)