From 0617a9ce512f8e5a6f5e57b5abc9f5b277af873c Mon Sep 17 00:00:00 2001 From: Phil Bennett Date: Tue, 21 Oct 2014 14:59:00 +0100 Subject: [PATCH 1/2] Fixed link, sorry about that, let a domain expire --- _posts/06-05-01-Further-Reading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/06-05-01-Further-Reading.md b/_posts/06-05-01-Further-Reading.md index a437131..a2e512d 100644 --- a/_posts/06-05-01-Further-Reading.md +++ b/_posts/06-05-01-Further-Reading.md @@ -9,4 +9,4 @@ anchor: further_reading - [What is Dependency Injection?](http://fabien.potencier.org/article/11/what-is-dependency-injection) - [Dependency Injection: An analogy](http://mwop.net/blog/260-Dependency-Injection-An-analogy.html) - [Dependency Injection: Huh?](http://net.tutsplus.com/tutorials/php/dependency-injection-huh/) -- [Dependency Injection as a tool for testing](http://www.happyaccidents.me/dependency-injection-as-a-tool-for-testing/) +- [Dependency Injection as a tool for testing](http://philipobenito.github.io/dependency-injection-as-a-tool-for-testing/) From 4858bf7dfc3453f04c3674faa03b09fd384f0c21 Mon Sep 17 00:00:00 2001 From: Matthias Glaub Date: Tue, 21 Oct 2014 22:46:10 +0200 Subject: [PATCH 2/2] * add opcache to bytecode cache list --- _posts/13-02-01-Bytecode-Cache.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/_posts/13-02-01-Bytecode-Cache.md b/_posts/13-02-01-Bytecode-Cache.md index 4ae98a0..ff46a22 100644 --- a/_posts/13-02-01-Bytecode-Cache.md +++ b/_posts/13-02-01-Bytecode-Cache.md @@ -11,12 +11,15 @@ If a PHP file is not modified, the bytecode will always be the same. This means 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. -As of PHP 5.5, there is a built-in bytecode cache called [OPcache](http://php.net/manual/en/book.opcache.php). This is +As of PHP 5.5, there is a built-in bytecode cache called [OPcache][opcache-book]. This is also available for earlier versions. -Other popular bytecodes caches are: +Read more about bytecode caches: +* [OPcache][opcache-book] (built-in since PHP 5.5) * [APC](http://php.net/manual/en/book.apc.php) (PHP 5.4 and earlier) * [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) + +[opcache-book]: http://php.net/manual/en/book.opcache.php \ No newline at end of file