Fellow Monks,
I'm building a CGI::Application based website which requires some special functionality outside the normal 'run-modes'. It's basically a cleanup routine, but I'm not sure the best way to fire it so that it only gets run once (daily, or thereabouts), and I'm trying to avoid a system scheduler (cron, or the like).
Ideally, I'd like something like this:
Every invocation of the CGI has a 33% chance of forking a 'cleanup' child process
If we become a cleanup process, somehow make sure we're the only one (-- how can I do this?)
Cleanup process checks to see if there are any tasks past due, takes care of them and quietly exits.
...but this approach seems pretty ghetto, and I'm sure I'm not the first person to try something like this. SuperSearch isn't yielding much, but maybe I'm using the wrong search terms.
Thanks in advance,
--twerq
-
Are you posting in the right place? Check out Where do I post X? to know for sure.
-
Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
<code> <a> <b> <big>
<blockquote> <br /> <dd>
<dl> <dt> <em> <font>
<h1> <h2> <h3> <h4>
<h5> <h6> <hr /> <i>
<li> <nbsp> <ol> <p>
<small> <strike> <strong>
<sub> <sup> <table>
<td> <th> <tr> <tt>
<u> <ul>
-
Snippets of code should be wrapped in
<code> tags not
<pre> tags. In fact, <pre>
tags should generally be avoided. If they must
be used, extreme care should be
taken to ensure that their contents do not
have long lines (<70 chars), in order to prevent
horizontal scrolling (and possible janitor
intervention).
-
Want more info? How to link or
or How to display code and escape characters
are good places to start.
|