XCache - 严肃的文档在哪里?
我正在尝试研究 XCache,但很难获得完整的文档(或者像 apc 文档这样的惰性文档)。
例如,我想知道
xcache_list(0, 0);
和
xcache_list(1, 0);
有人可以帮助我之间的区别吗?
i'm trying to studying XCache but is very difficult to get complete documentation (or also lazy documentation like apc docs).
For example i'd like to know difference beetwen
xcache_list(0, 0);
and
xcache_list(1, 0);
Someone can helps me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简单,一个获取存储的变量,另一个获取存储的 PHP 页面(OPCODE 缓存页面):
更好的用途是使用常量:
并且
就文档而言,我还没有找到该函数的任何内容...
Simple, one fetches stored variables, the other fetches stored PHP pages (OPCODE cached pages):
The better use would be to use the constants:
and
As far as the docs, I haven't found anything on that function...