php中serialize序列化与json性能测试的示例分析

性能测试。

PHP5.2之前对数组存储的时候,大都使用serialize系列化。PHP5.2之后,支持

函数要高效。耳闻不如眼见,眼见不一定为实。那就用实际数据测试吧.....

代码有可能能够确定这些数据的值,而不依赖于该成员的可访问性。类似地,反序列化从序列化的表示形式中提取数据,并直接设置对象状态,这也与可访问性规则无关。 对于任何可能包含重要的安全性数据的对象,如果可能,应该使该对象不可序列化。如果它必须为可序列化的,请尝试生成特定字段来保存不可序列化的重要数据。如果无法实现这一点,则应注意该数据会被公开给任何拥有序列化权限的代码,并确保不让任何恶意代码获得该权限。

负载的格式。它是从ECMAScript语言标准衍生而来的。JSON的设计目标是使它成为小的、轻便的、文本的,而且是JavaScript的一个子集。包括C,C++,C#,Java,JavaScript,Perl,Python等)。这些特性使JSON成为理想的数据交换语言。易于人阅读和编写,同时也易于机器解析和生成

名称/值”对的集合(A collection of name/value pairs)。不同的语言中,它被理解为对象(object),记录(record),结构(struct),字典(dictionary),哈希表(hash table),有键列表(keyed list),或者关联数组 (associative array)。

PHP 5.3下执行:我们先使用小的数据做测试:

代码如下:
PHP
$target = array (
'battle_id'=> 257
,'user_id'=> 41248
,'user_id2'=> 23989
,'player'=> 41248
,'formation'=> Array
(
'41248'=> 1
,'23989'=> 2
) ,'result'=> 1
,'battle_type'=> 1
,'speed'=> Array
(
'41248'=> 0
,'23989'=> 0
)
); $json = json_encode($target);
$seri = serialize($target); echo "json :",strlen($json),'
';
echo "serialize :",strlen($seri),'
'; $stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
json_encode($target);
}
$etime = microtime(true); echo "json_encode :",($etime - $stime),'
'; //---------------------------------- $stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
json_decode($json,true);
}
$etime = microtime(true); echo "json_decode :",'
'; //----------------------------------
$stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
serialize($target);
}
$etime = microtime(true); echo "serialize :",'
'; //----------------------------------
$stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
unserialize($seri);
}
$etime = microtime(true); echo "unserialize :",'
'; ?>

测试结果:






PHP5.2可能会更差。应该是在PHP5.3之后,json扩展做了优化。

代码放到最后,因为代码的数组比较长

serialize :8590
json_encode :0.90479207038879
json_decode :1.753741979599
serialize :1.3566699028015
unserialize :1.3003630638123数量级。

原因:

  • 数量级。

    serialize稍微差一点

    json无法处理对象方法等数据。

    • 在前后端交互一般都使用JSON,另外,支持UTF-8编码的数据。

代码如下:

PHP $target = array (
'battle_id'=> 257
,'formation'=> Array ('41248'=> 1,'23989'=> 2)
,'speed'=> Array( '41248'=> 0,'23989'=> 0 )
,'attacker'=> Array(
'1'=> Array (
'user_id'=> 41248
,'soldier_id'=> 28
,'prototype_id'=> 4
,'bid'=> 1
,'level'=> 1
,'rare'=> 1
,'skill_id'=> 1
,'totalhp'=> 3997
,'hp'=> 3997
,'attack_general'=> 346
,'attack_skill'=> 596
,'attack_explode'=> 458
,'attack_type'=> 1
,'defense'=> 0
,'anger'=> 50
,'dodge'=> 2
,'crit'=> 2
,'block'=> 2
,'block_effect'=> 0.5
,'crit_effect'=> 2
,'foramtion_effect'=> 0)
,'4'=> Array (
'user_id'=> 41248
,'soldier_id'=> 29
,'prototype_id'=> 2
,'totalhp'=> 3555
,'hp'=> 3555
,'attack_general'=> 396
,'attack_skill'=> 581
,'attack_explode'=> 418
,'block'=> 0
,'foramtion_effect'=> 0
)
,'5'=> Array (
'user_id'=> 41248
,'soldier_id'=> 30
,'prototype_id'=> 6
,'totalhp'=> 3043
,'hp'=> 3043
,'attack_general'=> 351
,'attack_skill'=> 540
,'attack_explode'=> 474
,'7'=> Array (
'user_id'=> 41248
,'soldier_id'=> 37
,'totalhp'=> 3491
,'hp'=> 3491
,'attack_general'=> 393
,'attack_skill'=> 532
,'attack_explode'=> 456
,'foramtion_effect'=> 0 ))
,'defender'=> Array(
'2'=> Array(
'user_id'=> 23989
,'soldier_id'=> 24
,'prototype_id'=> 1
,'totalhp'=> 3230
,'hp'=> 3230
,'attack_general'=> 390
,'attack_skill'=> 567
,'attack_explode'=> 442
,'5'=> Array(
'user_id'=> 23989
,'soldier_id'=> 25
,'totalhp'=> 3400
,'hp'=> 3400
,'attack_general'=> 379
,'attack_skill'=> 536
,'attack_explode'=> 405
,'foramtion_effect'=> 0 )
,'7'=> Array(
'user_id'=> 23989
,'soldier_id'=> 26
,'totalhp'=> 3669
,'hp'=> 3669
,'attack_general'=> 362
,'attack_skill'=> 549
,'attack_explode'=> 426
,'9'=> Array(
'user_id'=> 23989
,'soldier_id'=> 27
,'totalhp'=> 3618
,'hp'=> 3618
,'attack_general'=> 326
,'attack_skill'=> 510
,'attack_explode'=> 419
,'foramtion_effect'=> 0) )
,'battle_process'=> Array(
'0'=> Array(
'user_id'=> 41248
,'asid'=> 28
,'bsid'=> Array( '0'=> 26 )
,'harm'=> Array('0'=> 1650)
,'dhp'=> Array('0'=> 2019 )
,'attacker_anger'=> 66
,'defender_anger'=> Array('0'=> 94 )
,'skill'=> 0
,'state'=> 0
) ,'1'=> Array(
'user_id'=> 41248
,'2'=> Array(
'user_id'=> 41248
,'state'=> 0
)
,'3'=> Array(
'user_id'=> 41248
,'4'=> Array(
'user_id'=> 41248
,'5'=> Array(
'user_id'=> 41248
,'6'=> Array(
'user_id'=> 41248
,'7'=> Array(
'user_id'=> 41248
,'8'=> Array(
'user_id'=> 41248
,'9'=> Array(
'user_id'=> 41248
,'10'=> Array(
'user_id'=> 41248
,'11'=> Array(
'user_id'=> 41248
,'12'=> Array(
'user_id'=> 41248
,'13'=> Array(
'user_id'=> 41248
,'14'=> Array(
'user_id'=> 41248
,'15'=> Array(
'user_id'=> 41248
,'16'=> Array(
'user_id'=> 41248
,'17'=> Array(
'user_id'=> 41248
,'18'=> Array(
'user_id'=> 41248
,'19'=> Array(
'user_id'=> 41248
,'20'=>Array(
'user_id'=> 41248
,'state'=> 0
)
) );
$json = json_encode($target);
$seri = serialize($target); echo "json :",'
';
echo "serialize :",'
'; $stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
json_encode($target);
}
$etime = microtime(true); echo "json_encode :",'
'; //---------------------------------- $stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
json_decode($json,true);
}
$etime = microtime(true); echo "json_decode :",'
'; //----------------------------------
$stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
serialize($target);
}
$etime = microtime(true); echo "serialize :",'
'; //----------------------------------
$stime = microtime(true);
for ($i = 0; $i < 10000; $i ++) {
unserialize($seri);
}
$etime = microtime(true); echo "unserialize :",'
'; ?>

相关文章

Hessian开源的远程通讯,采用二进制 RPC的协议,基于 HTTP 传输。可以实现PHP调用Java,Python,C#等多语...
初识Mongodb的一些总结,在Mac Os X下真实搭建mongodb环境,以及分享个Mongodb管理工具,学习期间一些总结...
边看边操作,这样才能记得牢,实践是检验真理的唯一标准.光看不练假把式,光练不看傻把式,边看边练真把式....
在php中,结果输出一共有两种方式:echo和print,下面将对两种方式做一个比较。 echo与print的区别: (...
在安装好wampServer后,一直没有使用phpMyAdmin,今天用了一下,phpMyAdmin显示错误:The mbstring exte...
变量是用于存储数据的容器,与代数相似,可以给变量赋予某个确定的值(例如:$x=3)或者是赋予其它的变...