An opcode cache is a system to cache the result of the PHP code compilation to bytecode. This allows to use the bytecode instead of compiling on every request. Different opcode cache systems are available, mostly depending on used PHP version.
Questions tagged [opcode-cache]
32 questions
0
votes
2 answers
Simple PHP opcode caching solution which does not need compilation?
I have a PHP site where all pages include an 57K generated PHP file. I'm thinking of using an opcode cache, so the file doesn't need to be parsed for every time a page is loaded (I assume loading the already parsed file would be faster than reading…

Tom
- 7,515
- 7
- 38
- 54
-1
votes
1 answer
How do I enable opcache with PHP 5.3?
For various reasons, I can't upgrade PHP to 5.5. I have PHP 5.3, is there a way to do opcode caching with 5.3?

user187809
- 706
- 2
- 8
- 23