All that Zend Optimizer does is keep the compiled PHP code after a request rather than throwing it away and recompiling every time. There are several free implementations that do the same thing, arguably better. Perl does this by default, so all you need to do is run an environment that doesn't shut down Perl after every request (like CGI does). Common options are mod_perl and FastCGI.