PHP-XCache 将数据保存在哪里?
我最近安装了 PHP-XCache 并进行了设置。我还可以在管理面板中看到缓存的文件。
但我不明白的是,它把所有数据保存在哪里?
它是存储在特定位置还是存储在apache进程内存中,如果存储在apache内存中,为什么不需要为每个进程重新编译?
请帮我理解这个!
I've recently installed PHP-XCache and set it up. I can also see files being cached in the admin panel.
But something I do not understand is, where does it save all the data?
Is it stored in a specific location or is it stored in an apache processes memory, if its stored in apaches memory, why does it not need to recompile for every process?
Please help me understand this one!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
PHP 操作码加速器保存到共享内存。共享内存可以被所有进程访问。
PHP opcode accelerators save to shared memory. Shared memory can be accessed by all processes.
如果您想知道的话,它会缓存在内存中,并且无法更改为硬盘驱动器上的某个位置。下面的链接有更多信息。
链接:http://forum.lighttpd.net/topic/100804
It is cached in the memory, and it can't be changed to a place on the hard drive, if you were wondering. There's more info at the link below.
Link: http://forum.lighttpd.net/topic/100804