Hi! On Wed, Dec 10, 2003 at 12:38:51AM +0000, andrew dunn wrote:
> It seems to me like mod_perl is somehow caching the results of the > script for a short time, and if its called quickly again it will just > send out the same results without accepting new parameters. Is there a > way to disable this or prevent it from behaving like this ? mod_perl is quite likely not chaching your results. Maybe there's a problem with passing the cat_id to the DB. Try to add a debug statement there to see if you're actually getting the right value. You can run Apache with the -X option to make it easier to track things down (there will be only one Apache process) I find using command line http request quite helpful in such cases, because they definitly do not cache anything on the clientside. Try lwp-request http://yourserver/foo?cat_id=10 -- #!/usr/bin/perl http://domm.zsi.at for(ref bless{},just'another'perl'hacker){s-:+-$"-g&&print$_.$/} -- Reporting bugs: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html