Table of Contents
回复内容:
Home Backend Development PHP Tutorial 求解 php 性能优化的思路?以及 php 性能检测思路?

求解 php 性能优化的思路?以及 php 性能检测思路?

Jun 06, 2016 pm 08:45 PM
php

一个php项目,或者说是产品,从无到有,从用户少,到用户达到几万级别,甚至更多。很多时候会遇到性能的瓶颈,从项目快速开发,不注重sql语句,到sql语句优化;从无缓存,到加入缓存,缓存服务器从一台到多台等等。

现在,有时候会有些迷茫,虽然随着不断的优化,性能逐渐提升了。但是优化后提升了多少个百分点,如何去检测,如何去记录,都是个问题。

求教各位大大,感谢。

回复内容:

一个php项目,或者说是产品,从无到有,从用户少,到用户达到几万级别,甚至更多。很多时候会遇到性能的瓶颈,从项目快速开发,不注重sql语句,到sql语句优化;从无缓存,到加入缓存,缓存服务器从一台到多台等等。

现在,有时候会有些迷茫,虽然随着不断的优化,性能逐渐提升了。但是优化后提升了多少个百分点,如何去检测,如何去记录,都是个问题。

求教各位大大,感谢。

xhprof 能看到代码执行各处耗时
还有就是用benchmark 工具,是必要的
性能瓶颈主要是 io,重点关注这

可以采用 Xdebug 分析程序运行状态及用FPM 启用 slow_log

用 xhprof 看报告,然后挨个优化。

可以看看我写的几篇博客,PHP优化建议,测试工具等,可能对你有用,http://www.chenglin.name/category/php/optimization

可以从编码细则,变量/数据缓存,Opcode缓存,数据库等方面考虑。可以参考《高性能PHP应用开发》这本书,讲了从哪些方面优化,如何优化,还有一些测试工具等。

来泼冷水的,php再怎么优化性能极限也在那放着,只要不是有重大逻辑问题(例如获取个小东西循环几百下),php是不需要优化的,重点是在sql查询及cache server。

性能提升主要来自于3个方面
1.用户体验
2.逻辑
3.数据

如果是"产品"首先要把用户体验放在前面,第二是逻辑层的优化(教育程序员)
第三个是数据优化

当然前面说的都是关于技术方面的优化,比如 xdebug 啊 benchmark等检测工具进行分析..

建议楼主修改成"Web性能优化"如何?

  1. 前端优化 http://www.cnblogs.com/y0umer/archive/2012/02/17/2809467.html
  2. 服务端优化 http://www.cnblogs.com/y0umer/archive/2011/10/24/2809490.html
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles