laravel installation zend opcache accelerator tutorial, laravelopcache_PHP tutorial

WBOY
Release: 2016-07-13 10:05:34
Original
1031 people have browsed it

Laravel installation zend opcache accelerator tutorial, laravelopcache

Taking the article page as an example, through chrome packet capture, the waiting time reaches 147ms. In fact, before caching optimization, this page There are about 4 sql statements, and the speed is only about 152ms, which is not much different, so I decided to install zend opcache to speed up php.

After I installed zend opcache on the server and tested again, the waiting has dropped to 68ms, and the effect is obvious.

So, it is still necessary to install this type of PHP accelerator for laravel projects.

Installation tutorial attached:

The zend opcache (ZendOptimizerPlus) project is currently hosted on github, and the project address is: https://github.com/zendtech/ZendOptimizerPlus The installation steps have been explained in detail above, so let’s briefly talk about it here:

1. Download

There is a download zip button in the lower right corner of the project page. Click it to download and transfer it to the server. You can also right-click to copy the link and download it to the server through wget. 2. Unzip and enter the directory

Copy code The code is as follows:
cd ZendOptimizerPlus-master

3. Installation

Copy code The code is as follows:
$PHP_DIR/bin/phpize
./configure --with-php-config=$PHP_DIR/bin/php-config
make && make install

Among them, $PHP_DIR is your php installation directory. If you don’t know, you can try it

Copy code The code is as follows:
which php

Then the path obtained by ls -l can be used to find the installation directory of php. Generally, if it is compiled from source code, it is in /usr/local/php. It may also be installed through a third-party package manager, as long as you find phpize and php-config. After the compilation is completed, you will get a prompt:

Copy code The code is as follows:
Installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20100525/

This is to tell you the location of the compiled extension .so file. Then we edit php.ini. This configuration file is either in $PHP_DIR/etc or /usr/local/etc/. In short, open it. Add

at the end

Copy code The code is as follows:
[Zend Opcache]
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1

Save and exit, and restart php-fpm or apache.

The above is the entire content of this article, I hope you all like it.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/963116.htmlTechArticleLaravel installation zend opcache accelerator tutorial, laravelopcache Taking the article page as an example, through chrome packet capture, the waiting time reaches 147ms , in fact, before caching optimization, this page probably has...
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!