nug blazer Posted July 9, 2008 Share Posted July 9, 2008 I'm helping my friend setup a server and it uses only about 5 php files. They change only about once a month, but the database is constantly changing so I can't use memcached. :-\ The php files are accessed by clients around once per second. Every time someone visits the index.php file does php re-compile to bytecode the file or does it cache the intermediate bytecode? ??? P.S. I'm using Linux - so I know it caches the raw human readable script in memory. - Nate Link to comment https://forums.phpfreaks.com/topic/113857-does-php-cache-the-bytecode/ Share on other sites More sharing options...
trq Posted July 9, 2008 Share Posted July 9, 2008 Opcode is not cached by default in php, you could install the apc extension to do so however. Link to comment https://forums.phpfreaks.com/topic/113857-does-php-cache-the-bytecode/#findComment-585101 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.