win32 的 APC 锁定机制替代方案
我想使用 APC for php 在无限运行的 php 进程和多个客户端进程之间存储和获取值(函数调用和返回值)。无休止的运行过程不断检查新存储的值。 我在 WinXP 上将 php 作为 Apache 模块运行。对于每个 APC 函数调用,都会将 apc.lock.* 文件放置在 Windows 临时目录中。我的硬盘超时。 是否有其他锁定机制可用于(或禁用锁定)APC?
I want to use APC for php for storing and fetching values (function calls and return values) between a endless running php process and multiple client processes. The endless running process constantly checks for newly stored values.
I am running php as a Apache module on WinXP. For each APC function call a apc.lock.* file is placed in the windows temp directory. My harddisk runs overtime.
Is there an other locking mechanisme that can be used (or disable locking) in for APC?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将锁存储在数据库表中怎么样?您也可以选择使用内置函数 flock。
What about storing the locks in database table? Optionally you can use build-in function flock.