Reputation: 900
I think it's a pretty big bottleneck for big sites? Is there a way to store them in memory?
Upvotes: 1
Views: 79
Reputation: 869
Yes PHP files are by default read and executed every page request.
You should look into something like APC, Zend Accelerator, another PHP opcode cache
You may already have these installed, however most of the time they will need some edits to PHP.INI to get them doing their job.
Upvotes: 2