Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: using CGI to output a system command

by davidrw (Prior)
on Aug 02, 2005 at 14:07 UTC ( [id://480191]=note: print w/replies, xml ) Need Help??


in reply to using CGI to output a system command

What are the refresh requirements? i.e., does the CGI script have to execute the command to get fresh ouput on demand, or is the command something that can be run once a day or once an hour? If the latter, you can just make a cron entry that creates a static file.. something like (this example is every 2 hrs):
0 */2 * * * /usr/bin/your_cmd > /var/www/html/foo.html
If it does need to be on demand/realtime, you might want to at least consider using something like Cache::FileCache to cache the output for at least a minute or so so that users refreshing the page doesn't needlessly hammer your system. But depends entirely on how many people will look at this at a time and what resources the system command uses.

This is potentially relevant as well: CGI::Application timeout

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://480191]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (2)
As of 2024-04-20 03:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found