APC 无法正常工作

发布于 2024-11-16 07:43:32 字数 192 浏览 1 评论 0原文

我最近在生产服务器上安装了 APC,但它没有按预期工作。

我的所有项目都是使用 SVN 处理的,在生产版本中,我有一个提交后挂钩,可以将 svn 导出运行到正确的目录。

问题是,使用 APC,我的网站无法显示任何内容(白页),除非我重新启动 apache。

我检查了一下 apc.stat 已打开,所以我不知道发生了什么!

I recently installed APC on my production server but It's not working as expected.

All my projects are handled with SVN, and on production release I have a post commit hook that runs a svn export to the correct directory.

The problem is that with APC, my website fails to display anything(white page) unless I restart apache.

I check and apc.stat is On so I dont know what is happening !

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

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

发布评论

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

评论(1

土豪 2024-11-23 07:43:32

尝试更改此配置设置:

apc.stat_ctime = 1

来自 php.net

使用 ctime 进行验证将确保 inode 自上次统计以来没有更改,从而避免由 svn 或 rsync 等程序引起的问题。 APC 通常只会检查 mtime。

Try to change this configuration setting:

apc.stat_ctime = 1

From php.net:

Verification with ctime will avoid problems caused by programs such as svn or rsync by making sure inodes haven't changed since the last stat. APC will normally only check mtime.

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