Home php教程 php手册 PHP中json_encode、json_decode与serialize、unserialize的性能

PHP中json_encode、json_decode与serialize、unserialize的性能

Jun 06, 2016 pm 08:34 PM
json_encode serialize Performance Testing

今天偶然在想,如果用PHP写一个类似BDB的基于文件的Key-Value小型数据库用于存储非结构化的记录型数据,不知道效率会如何?

于是便联想到PHP中的对象怎么样序列化存储性价比最高呢?接着想到了之前同事推荐的JSON编码和解码函数。
据他所说,json_encode和json_decode比内置的serialize和unserialize函数要高效。
于是我决定动手实验,证实一下同事所说的情况是否属实。
实验分别在PHP 5.2.13和PHP 5.3.2环境下进行。
用同一个变量,分别用以上方式进行编码或解码10000次,并得出每个函数执行10000次所需的时间。
以下是PHP 5.2.13环境其中一次测试结果:
代码如下:
json : 190
serialize : 257
json_encode : 0.08364200592041
json_decode : 0.18004894256592
serialize : 0.063642024993896
unserialize : 0.086990833282471
DONE.

以下是PHP 5.3.2环境其中一次测试结果:
代码如下:
json : 190
serialize : 257
json_encode : 0.062805891036987
json_decode : 0.14239192008972
serialize : 0.048481941223145
unserialize : 0.05927300453186
DONE.

这次实验得到的结论是:
json_encode和json_decode的效率并没有比serialize和unserialize的效率高,在反序列化的时候性能相差两倍左右,PHP 5.3执行效率比PHP 5.2略有提升。
以下是我用来做测试的代码:
代码如下:
$target = array (
'name' => '全能头盔',
'quality' => 'Blue',
'ti_id' => 21302,
'is_bind' => 1,
'demand_conditions' =>
array (
'HeroLevel' => 1,
),
'quality_attr_sign' =>
array (
'HeroStrength' => 8,
'HeroAgility' => 8,
'HeroIntelligence' => 8,
),
);
$json = json_encode($target);
$seri = serialize($target);
echo "json :\t\t" . strlen($json) . "\r\n";
echo "serialize :\t" . strlen($seri) . "\r\n\r\n";
$stime = microtime(true);
for ($i = 0; $i {
json_encode($target);
}
$etime = microtime(true);
echo "json_encode :\t" . ($etime - $stime) . "\r\n";
//----------------------------------
$stime = microtime(true);
for ($i = 0; $i {
json_decode($json);
}
$etime = microtime(true);
echo "json_decode :\t" . ($etime - $stime) . "\r\n\r\n";
//----------------------------------
$stime = microtime(true);
for ($i = 0; $i {
serialize($target);
}
$etime = microtime(true);
echo "serialize :\t" . ($etime - $stime) . "\r\n";
//----------------------------------
$stime = microtime(true);
for ($i = 0; $i {
unserialize($seri);
}
$etime = microtime(true);
echo "unserialize :\t" . ($etime - $stime) . "\r\n\r\n";
echo 'DONE.';
?>
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)

How to use Docker for performance testing and stress testing of containers How to use Docker for performance testing and stress testing of containers Nov 07, 2023 pm 04:53 PM

How to use Docker for container performance testing and stress testing requires specific code examples. Introduction The rise of container virtualization technology has made the deployment and operation of applications more flexible and efficient. One of the most popular tools is Docker. As a lightweight containerization platform, Docker provides a convenient way to package, distribute and run applications, but how to test and evaluate the performance of containers, especially stress testing under high load conditions, It is a question that many people are concerned about. This article will introduce

The difference between performance testing and unit testing in Go language The difference between performance testing and unit testing in Go language May 08, 2024 pm 03:09 PM

Performance tests evaluate an application's performance under different loads, while unit tests verify the correctness of a single unit of code. Performance testing focuses on measuring response time and throughput, while unit testing focuses on function output and code coverage. Performance tests simulate real-world environments with high load and concurrency, while unit tests run under low load and serial conditions. The goal of performance testing is to identify performance bottlenecks and optimize the application, while the goal of unit testing is to ensure code correctness and robustness.

How to implement MySQL underlying optimization: Advanced use and analysis of performance testing and tuning tools How to implement MySQL underlying optimization: Advanced use and analysis of performance testing and tuning tools Nov 08, 2023 pm 03:27 PM

How to achieve underlying optimization of MySQL: Advanced use and analysis of performance testing and tuning tools Introduction MySQL is a commonly used relational database management system that is widely used in various Web applications and large software systems. In order to ensure the operating efficiency and performance of the system, we need to perform underlying optimization of MySQL. This article describes how to use performance testing and tuning tools for advanced usage and analysis, and provides specific code examples. 1. Selection and use of performance testing tools Performance testing tools are important for evaluating system performance and bottlenecks

Nginx load balancing performance testing and tuning practice Nginx load balancing performance testing and tuning practice Oct 15, 2023 pm 12:15 PM

Overview of performance testing and tuning practices of Nginx load balancing: As a high-performance reverse proxy server, Nginx is often used in load balancing application scenarios. This article will introduce how to perform performance testing of Nginx load balancing and improve its performance through tuning practices. Performance test preparation: Before performing the performance test, we need to prepare one or more servers with good performance, install Nginx, and configure reverse proxy and load balancing. Test tool selection: In order to simulate real load conditions, we can use common

Vue development advice: How to perform performance testing and performance tuning Vue development advice: How to perform performance testing and performance tuning Nov 22, 2023 pm 12:01 PM

In Vue development, performance is a very important issue. If we can develop applications with excellent performance, the user experience and market competitiveness will be greatly improved. To achieve this, we need to perform performance testing and performance tuning. This article will introduce how to perform performance testing and performance tuning. 1. Performance testing Performance testing is the key to improving application performance. It can detect the factors causing performance problems in the application and then optimize them. To conduct performance testing, we can adopt the following methods: 1. Benchmark test Benchmark test is

Java development: How to use JMH for performance testing and benchmarking Java development: How to use JMH for performance testing and benchmarking Sep 20, 2023 pm 02:00 PM

Java development: How to use JMH for performance testing and benchmarking Introduction: During the Java development process, we often need to test the performance and efficiency of the code. In order to accurately evaluate the performance of the code, we can use the JMH (Java Microbenchmark Harness) tool, which is a performance testing and benchmarking tool specially designed for Java developers. This article will introduce how to use JMH for performance testing and benchmarking, and provide some specific code examples. 1. What

Red Magic 9 Pro in-depth performance test: it ends the performance competition early Red Magic 9 Pro in-depth performance test: it ends the performance competition early Feb 03, 2024 pm 04:35 PM

It has to be said that in this increasingly homogenized mobile phone market, the Red Magic is indeed a quite unique and unusual existence. While the entire gaming phone category is struggling due to the improved energy consumption ratio of Qualcomm Snapdragon, the Red Devils have always adhered to their own set of product concepts, with a straight body and active heat dissipation, all they want is a performance release. . When the entire industry's flagship mobile phones are becoming more and more slumped due to the constant accumulation of imaging modules, the Red Devils actually gives you a flat rear camera design. This may even be the first trend in the entire mobile phone industry in the past four or five years. The only product on the market. (Source: Red Devils) The most important thing is that, as the master of netizens’ opinions, Red Devils has really succeeded in attracting a group of fans. When the flagship sub-brands of several major manufacturers sell for around 3,000 yuan, this

Methods of performance testing in Golang function concurrent programming Methods of performance testing in Golang function concurrent programming Apr 17, 2024 pm 10:09 PM

In the Go language, program performance can be improved by making concurrent calls to functions. To evaluate this performance improvement, a benchmarking mechanism can be used: Benchmarking: Measure function execution time using built-in mechanisms such as funcBenchmarkConcurrentFunction. Practical case: For example, perform a concurrent performance test on a function that calculates Fibonacci numbers, such as funcBenchmarkFibonacciConcurrent. Analysis results: Benchmark tests can show the performance improvement of concurrent computing relative to serial computing. For example, Fibonacci number calculation is about 21,311 nanoseconds faster.

See all articles