I've got some pages (or "nodes" in Drupal parlance) that have the content of a PHP function which calls an external library to render a HAML template. These nodes (meaning the actual <?php ?>
tags and functions to call the library) are stored in the database and go through some sort of eval
style call when the page is requested.
If I'm using APC, will the opcodes for the functions stored in the database still cache? Or will it go through a fresh cycle of requesting the library, running the function, generating the output, and storing that to be echo
ed every time the page is hit?