in reply to Re: Apache::CacheContent and unforeseen side effects
in thread Apache::CacheContent and unforeseen side effects

i'm getting there. Apache::CacheContent doesn't expire files, it seems, if the user hasn't revisited the content in the DefaultTTL time ...
  • Comment on Re^2: Apache::CacheContent and unforeseen side effects

Replies are listed 'Best First'.
Re^3: Apache::CacheContent and unforeseen side effects
by The Mad Hatter (Priest) on Dec 27, 2004 at 18:13 UTC
    Ah. Could you setup a cron job to manually "expire" (aka, delete) the old files?
      i could. i'm trying to delete them now, but i can't believe i've forgotten the gnu `find` syntax for the -exec args.

      just trying to get rid of some of them NOW ...

        find -daystart -mtime +1 -exec rm -rf \{\} \;
        ...will delete any files over a day old (from the start of today).