在 php 中缓存函数而不是 require_once

发布于 2024-08-24 10:37:03 字数 238 浏览 11 评论 0 原文

我一直在使用 APC 缓存功能,效果非常好。我在想,为什么不缓存所有函数,并在需要时加载它们(实际上有点像框架)。

function Foo {echo 'bar';}
$foo = Foo;
apc_store('foo',$foo);

然后每当需要 Foo 时,我就使用 apc_fetch。这比 require_once 更高效/更快吗? 这是明智之举吗? (特别是当你有很多函数文件时)

I've been using APC caching functions and it's been phenomenal. I was thinking, why not just cache all of my functions, and load them whenever I need to (kind of like frameworks actually).

function Foo {echo 'bar';}
$foo = Foo;
apc_store('foo',$foo);

And then whenever Foo is needed, I'd just use apc_fetch. Is that more efficient/quick than require_once?
Is it a smart move to do? (especially when you have a lot of function files)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文