Similar Posts

PHP CacheTool – A Cache Management CLI
ByConanIf you are dealing with various cache, you might find that a CLI tools for viewing status and doing management works is a great idea. You will no longer need to restart your PHP-FPM pool for opcode/apc cache invalidation. You also do not need to write a stupid PHP file and run on the browser…
Laravel 4 – Beginner’s notes
ByConanYou might ask: What is Laravel (and Laravel 4)? In short, it is the PHP frameworks for web artisans. This contains notes for beginners. We can generate tables for application by utilizing the migration feature with artisan. For example, in order to setup a user table, we use parameters –table and –create:[bash]php artisan migrate:install php artisan migrate:make…
Setting up Nginx, HHVM, and Percona for Laravel
ByConanHHVM is an open-source virtual machine designed for executing programs written in Hack and PHP. HHVM uses a just-in-time (JIT) compilation approach to achieve superior performance while maintaining the development flexibility that PHP provides. This tutorial guides how to set up Nginx, HHVM, and Percona for Laravel Projects on Ubuntu. First, we need to update system and install essentials (and remove…
Set up a private Git Server on CentOS server
ByConanGitHub is a well-known git repository, but one limit is that it is not free for private git repository (cost $7/month this posting time). It means that your source code of an important project will also be available for your competitors one day. So this tutorial guides how to setup a private git server on Linux…
Zend OpCache in PHP 5.5
ByConanA great news for the PHP community is that Zend Optimizer+ was became open-source, so it is built-in from PHP 5.5. This tutorial will guide how to install Zend Opcache in PHP 5.5 and will mention a little bit about its performance. What is Optimizer+? According to PHP OptimizerPlus RFC, Optimizer+ is the fastest opcode cache…

Profiling PHP Applications with Tideways XHProf and XHGui
ByConanThis article focuses on how to profile PHP applications with Tideways XHProf and XHGui. I myself prefer this approach than the old XDebug and Webgrind so most of my recent projects have been utilizing this. Since this is just simply a note, Google is your friend for the mentioned tools. 0. Install PHP 7.2 FPM…