From 2b4a390f92203241ac6eeea59ee523bfcc808fdb Mon Sep 17 00:00:00 2001 From: = Date: Tue, 10 Jul 2012 13:58:18 -0400 Subject: [PATCH] Fix typos in bytecode cache section --- _posts/10-02-01-Bytecode-Cache.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/_posts/10-02-01-Bytecode-Cache.md b/_posts/10-02-01-Bytecode-Cache.md index 5894fdc..432b063 100644 --- a/_posts/10-02-01-Bytecode-Cache.md +++ b/_posts/10-02-01-Bytecode-Cache.md @@ -4,15 +4,15 @@ isChild: true ## Bytecode Cache -When PHP file is executed, under the hood it is first compiled to bytecode (also known as opcode) and only then, the bytecode is executed. -If PHP file is not modified, then bytecode will always be same, which means that compilation step is a waste of CPU resources. +When a PHP file is executed, under the hood it is first compiled to bytecode (also known as opcode) and, only then, the bytecode is executed. +If a PHP file is not modified, the bytecode will always be the same. This means that the compilation step is a waste of CPU resources. This is where Bytecode cache comes in. It prevents redundant compilation by storing bytecode in memory and reusing it on successive calls. -Setting up bytecode cache is a matter of minutes and your application will speed up significantly, there's really no reason not to use it. +Setting up bytecode cache is a matter of minutes, and your application will speed up significantly. There's really no reason not to use it. Popular bytecodes caches are: -[APC](http://php.net/manual/en/book.apc.php) -[XCache](http://xcache.lighttpd.net/) -[Zend Optimizer+](http://www.zend.com/products/server/) (part of Zend Server package) -[WinCache](http://www.iis.net/download/wincacheforphp) (extension for MS Windows Server) \ No newline at end of file +* [APC](http://php.net/manual/en/book.apc.php) +* [XCache](http://xcache.lighttpd.net/) +* [Zend Optimizer+](http://www.zend.com/products/server/) (part of Zend Server package) +* [WinCache](http://www.iis.net/download/wincacheforphp) (extension for MS Windows Server)