in reply to mod_perl dump your cache!

As it turns out using Apache::StatINC from within the module loaded by my PerlHandler is exactly what I needed to do.
use Apache::StatINC; &Apache::StatINC::handler($r);
Works great!

Thanks for the input.
--habit