Even if the script is written as vanilla CGI, if it's being run on apache with mod_perl, there are a couple ways that it could be set up to optimize performance by caching CGI scripts to avoid having to reload and recompile them every time they're referenced.

By default, apache request-handling processes kill themselves after handling 50 requests, at which point their cached data is lost and the replacement process reloads everything. I suspect that the two anomalous log entries were the result of a process which had previously handled requests for your old script and didn't notice that there was a new version. By now, though, it is long dead and you shouldn't see any artifacts of the old version in the future.


In reply to Re: Re: Re: Script caching? by dsheroh
in thread Script caching? by Dr. Mu

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.