varian has some good points on the way mod_perl works. That could be your problem.

This could also be a caching issue, and nothing to do with mod_perl: what happens is that the browser, or a proxy server at the ISP, caches the web page that you produce.

So, when the user requests the same page again, it's served out of the cache, rather than being requested again from your server.

Obviously this is great for static content, but a bit of a problem for content that changes each time it's requested. It can't always be solved by getting the user to change their browser settings (even if that were practical for a public site, which it usually isn't) because the problem can also be caused by reverse caching proxy servers between your server and the user. AOL used to be particularly bad for this, I don't know if they still are.

Anyway, the solution I've always used, which has the virtue of simplicity, is to append the time to the end of the URL when you request it. Obviously you need to arrange things so that the link to the dynamic page is itself dynamically generated. So you just need to make your HTML something like this:

'<A HREF="http://www.example.com/script.pl?r='.time().'">'

The reason that works is that the caching proxy server - or the browser - sees it as a request for a different URI to the previous one, so doesn't return the cached copy.

You can also play around with HTTP headers and so on to (in theory) prevent caching - my experience has been that this will work OK for the browser, but not necessarily for caching proxy servers.

HTH!

Best wishes, andye


In reply to Re: weired problem with mod_perl by andye
in thread weired problem with mod_perl by opensourcer

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.