使用 PHP 输出缓冲时我需要关心竞争条件吗?

发布于 2024-10-17 13:58:54 字数 415 浏览 2 评论 0原文

我想缓存单个 php 文件的结果(几分钟)。阅读了几篇文章后,这似乎很简单,例如遵循 http://www .addedbytes.com/articles/caching-output-in-php/

但是,在 http://simas.posterous.com/php-data-caching-techniques,作者说应该对文件进行锁定,但我在网上的任何示例中都看不到锁定。这是必需的吗?我该怎么做呢?

多谢!

I would like to cache the result of a single php file (for a few minutes). Having read a few articles, this seems pretty easy, e.g. following http://www.addedbytes.com/articles/caching-output-in-php/

However, at the end of http://simas.posterous.com/php-data-caching-techniques, the author says that file locking should be done and I cannot see locking in any examples online. Is this required? How should I do it?

Thanks a lot!

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一场信仰旅途 2024-10-24 13:58:54

为此,我们使用 Nette 的 NSafeStream 类 - 它提供线程安全文件访问:

NSafeStream

您不需要使用框架的其余部分,您可以只使用此类。

We use Nette's NSafeStream class for this - it provides thread safe file access:

NSafeStream

You don't need to use rest of the framework, you can use just this class.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文