I am about to launch a CodeIgniter web application. Any recommendations on what I should do to maximize performance of my application? I'm thinking memcached and an accelerator (though I am not sure which one). Suggestions?
To maximize performance, minimizing database requests you must. Denormalize tables before you hack on memory caches. And more importantly run your application through xdebug first, to check out the cachegrind output.