Press "Enter" to skip to content

Yaconf-1.1 40%速度提升版

Yaconf是一个高性能的PHP配置容器, 它在PHP启动的时候把格式为INI的配置文件Parse后存储在PHP的常驻内存中,不需要每次请求的时候都来分析配置文件,并且在获取配置项的时候"zero-copy",具体的介绍可以看我2015年发布的时候写的介绍:Yaconf - 一个高性能的配置管理扩展

Yaconf在微博被大量使用,也稳定运行了这么多年,但是2015年发布后基本也没有什么大的变化。

最近因为疫情,我对Yaconf做了一系列的重构,主要是减少取过程中的内存使用,基本重写了整体的逻辑,那性能优化的结果如何呢? 我们来做个简单的测试。

首先测试配置文件如下:

name="yaconf"
version="1.1.0"

[author]
name="Laruence"
blog.address="https://www.laruence.com"

[developer : author]
projects.yaf.repo="https://github.com/laruence/yaf"

测试脚本如下:

<?php
function bench($key) {
	$count = 1000000;
	$start = microtime(true);
	while ($count--) {
		Yaconf::get($key);
	}
	printf("%s: %fs\n", $key, microtime(true) - $start);
}

bench("config.name");
bench("config.author.name");
bench("config.author.blog.address");
bench("config.developer.projects.yaf.repo");
?>

首先我们用yaconf-1.0.8来测试:

config.name: 0.129616s
config.author.name: 0.172129s
config.author.blog.address: 0.206659s
config.developer.projects.yaf.repo: 0.248205s

然后我们来用yaconf-1.1.0测试下:

config.name: 0.075837s
config.author.name: 0.098553s
config.author.blog.address: 0.144033s
config.developer.projects.yaf.repo: 0.144580s

可以看到获取配置平均能有40%的耗时减少,尤其当你使用链式方法获取配置内容的时候,越长提升越明显。

好了, Yaconf-1.1.0已经发布到PECL: Yaconf

enjoy!

9 Comments

  1. Can I create more value on the bench, and if it has more than that, can you change the given value?

  2. scribble io
    scribble io April 16, 2021

    That’s a good thing, I hope you will add more information

  3. pro911
    pro911 January 28, 2021

    如果是cli的框架,是不是用这个不太合适,因为swoole的框架在启动时会吧config的文件也加载到常驻内存当中 这样是不是就等于多占用了约等于一倍的内存?

  4. c
    c January 18, 2021

    谢谢鸟哥,

  5. t rex game
    t rex game December 8, 2020

    Thanks for sharing this. I really enjoyed reading it. It is very good. This is interesting as well as very engaging. I couldn’t stop until I finished it.

  6. lee simialee
    lee simialee August 4, 2020

    谢谢,已经用上了

  7. Zeln
    Zeln April 20, 2020

    感谢鸟哥!

  8. kn007
    kn007 March 15, 2020

    过来围观。
    另外新年好啊,鸟哥

Comments are closed.