1

I am deciding whether or not to use .ini format vs. standard PHP variables/constants in a file holding my app's configuration information. One of my considerations is APC's ability to cache the ini file. If it can, I assume it will speed up my app, as well as reduce reading the config file from the disk on each page load...

4

1 回答 1

1

不正常。APC 仅缓存作为 PHP 代码加载和执行的文件。.ini文件不是 PHP 代码,因此它们不会自动缓存。

不过,您的应用程序可以在 APC 变量缓存中存储它想要的任何内容,包括.ini文件的内容。

于 2013-02-03T05:53:54.037 回答