I'm wondering if there's a way to capture the opcodes that Perl uses to execute a program. Then, once those are captured, to run those opcodes without having to go through the entire compile step again. I'd sorta like to do this for a program that runs over and over on the same data set (it's a CGI program) and doesn't change.
Or, is there a better way of doing this? Please note that I cannot use mod_perl on this assignment.