Performance


Performance - 图1

Overview

A poorly written application will always have poor performance. A very common way for developers to increase the performance of their application is:

just throw more hardware to it

The problem with the above approach is two fold. For starters, in most cases the owner is the one that will incur the additional costs. The second issue is that there comes a time that one can no longer upgrade the hardware and will have to resort to load balancers, docker swarms etc. which will skyrocket costs.

The problem will remain: the poorly written application

In order to speed up your application, you first need to ensure that your application is written with the best way possible that fulfils its requirements. Nothing beats a good design. After that, there are many aspects to consider:

  • server hardware
  • clients connecting (location, browsers)
  • network latency
  • database hardware
  • CDNand many more. In this article we will try to highlight some scenarios that could provide more insight as to where your application is really slow.

Server

Profiling) is a form of dynamic application analysis that offers metrics regarding your application. Profiling offers the real picture on what is really going on at any given time in your application, and thus guide you to areas where you application needs attention. Profiling should be continuous in a production application.

It does have an overhead so that has to be taken into account. The most verbose profiling happens on every request but it will all depend on your traffic. We certainly do not want to increase the load on the server just because we are profiling the application. A common way of profiling is one request per 100 or one per 1,000. After a while you will have enough data to draw conclusions as to where slowdowns occur, why peaks occurred etc.

XDebug

XDebug offers a very handy profiler right out of the box. All you have to do is install the extension and enable profiling in your php.ini:

  1. xdebug.profiler_enable = On

Using a tool such as Webgrind will allow you to connect to XDebug and get very valuable information as to what is going on with your code. Webgrind offers statistics on which methods are slower than others and other statistics.

Xhprof

Xhprof is another extension to profile PHP applications. To enable it, all you need is to add the following line to the start of the bootstrap file:

  1. <?php
  2. xhprof_enable(XHPROF_FLAGS_CPU + XHPROF_FLAGS_MEMORY);

Then at the end of the file save the profiled data:

  1. <?php
  2. $xhprof_data = xhprof_disable('/tmp');
  3. $XHPROF_ROOT = '/var/www/xhprof/';
  4. include_once $XHPROF_ROOT . '/xhprof_lib/utils/xhprof_lib.php';
  5. include_once $XHPROF_ROOT . '/xhprof_lib/utils/xhprof_runs.php';
  6. $xhprof_runs = new XHProfRuns_Default();
  7. $run_id = $xhprof_runs->save_run($xhprof_data, 'xhprof_testing');
  8. echo "https://localhost/xhprof/xhprof_html/index.php?run={$run_id}&source=xhprof_testing\n";

Xhprof provides a built-in HTML viewer to analyze the profiled data:

Performance - 图2

Performance - 图3

As mentioned above, profiling can increase the load on your server. In the case of Xhprof, you can introduce a conditional that would start profiling only after X requests.

SQL Statements

Almost all RDBMs offer tools to identify slow SQL statements. Identifying and fixing slow queries is very important in terms of performance on the server side. MariaDB / MySql / AuroraDb offer configuration settings that enable a slow-query log. The database then keeps its own metrics and whenever a query takes long to complete it will be logged in the slow-query log. The log can then be analyzed by the development team and adjustments can be made.

To enable this feature you will need to add this to my.cnf (don’t forget to restart your database server)

  1. log-slow-queries = /var/log/slow-queries.log
  2. long_query_time = 1.5

Client

Another area to focus on is the client. Improving the loading of assets such as images, stylesheets, javascript files can significantly improve performance and enhance user experience. There are a number of tools that can help with identifying bottlenecks on the client:

Browsers

Most modern browsers have tools to profile a page’s loading time. Those are easily called web inspectors or developer tools. For instance when using Brave or any Chromium based browser you can inspect the page and the developer tools will show a waterfall of what has loaded for the curent page (files), how much time it took and the total loading time:

Performance - 图4

A relatively easy fix for increasing client performance is to set the correct headers for assets so that they expire in the future vs. being loaded from the server on every request. Additionally, CDN providers can help with distributing assets from their distribution centers that are closest to the client originating the request.

Yahoo! YSlow

YSlow analyzes web pages and suggests ways to improve their performance based on a set of rules for high performance web pages

Performance - 图5

PHP

PHP is becoming faster with every new version. Using the latest version improves the performance of your applications and also of Phalcon.

Bytecode Cache

APCu as many other bytecode caches helps applications reduce the overhead of read, tokenize and parse PHP files in each request. Once the extension is installed use the following setting to enable APC:

  1. apc.enabled = On

Ensuring that opcache is also enabled will also help.

Slow tasks

Based on the requirements of your application, there maybe times that you will need to perform long running tasks. Examples of such tasks could be processing a video, optimizing images, sending emails, generating PDF documents etc. These tasks should be processed using background jobs. The usual process is:

  • The application initiates a task by sending a message to a queue service
  • The user sees a message that the task has been scheduled
  • In the background (or different server), worker scripts peek at the queue
  • When a message arrives, the worker script detects the type of message and calls the relevant task script
  • Once the task finishes, the user is notified that their data is ready.The above is a simplistic view of how a queue service for background processing works, but can offer ideas on how background tasks can be executed. There are also a variety of queue services available that you can leverage using the relevant PHP libraries:

  • NATS

  • RabbitMQ
  • Redis
  • Resque
  • SQS
  • ZeroMQ

Page Speed

mod_pagespeed speeds up your site and reduces page load time. This open-source Apache HTTP server module (also available for nginx) automatically applies web performance best practices to pages, and associated assets (CSS, JavaScript, images) without requiring you to modify your existing content or workflow.