git-svn-id: svn://svn.lighttpd.net/xcache/trunk@1038 c26eb9a1-5813-0410-bd6c-c2e55f420ca73.0
parent
dfaf158869
commit
79279c79ae
@ -1,37 +1,4 @@
|
||||
<h2><?php echo _T('Cache Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('Slots'); ?>: </dt><dd>Number of hash slots. the setting from your php.ini</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>Cache Size, Size of the cache (or cache chunk), in bytes</dd>
|
||||
<dt><?php echo _T('Avail'); ?>: </dt><dd>Available Memory, free memory in bytes of this cache</dd>
|
||||
<dt><?php echo _T('% Used'); ?>: </dt><dd>Percent, A bar shows how much memory available in percent, and memory blocks status</dd>
|
||||
<dt><?php echo _T('Clear'); ?>: </dt><dd>Clear Button, Press the button to clean this cache</dd>
|
||||
<dt><?php echo _T('Compiling'); ?>: </dt><dd>Compiling flag, "yes" if the cache is busy compiling php script</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>Cache Hits, hit=a var/php is loaded from this cache</dd>
|
||||
<dt><?php echo _T('Hits/H'); ?>: </dt><dd>Average Hits per Hour. Only last 24 hours is logged</dd>
|
||||
<dt><?php echo _T('Hits 24H'); ?>: </dt><dd>Hits 24 Hours. Hits graph of last 24 hours</dd>
|
||||
<dt><?php echo _T('Hits/S'); ?>: </dt><dd>Average Hits per Second. Only last 5 seconds is logged</dd>
|
||||
<dt><?php echo _T('Updates'); ?>: </dt><dd>Cache Updates</dd>
|
||||
<dt><?php echo _T('Clogs'); ?>: </dt><dd>Compiling Clogs, clog=compiling is needed but avoided to wait(be blocked) when the cache is busy compiling already</dd>
|
||||
<dt><?php echo _T('OOMs'); ?>: </dt><dd>Out Of Memory, how many times a new item should be stored but there isn't enough memory in the cache, think of increasing the xcache.size or xcache.var_size</dd>
|
||||
<dt><?php echo _T('Errors'); ?>: </dt><dd>Compiler errors, how many times your script is compiled but failed. You should really check what is happening if you see this value increase. See <a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt><?php echo _T('Protected'); ?>: </dt><dd>Whether <a href="http://xcache.lighttpd.net/wiki/ReadonlyProtection">readonly_protection</a> is available and enable on this cache</dd>
|
||||
<dt><?php echo _T('Cached'); ?>: </dt><dd>Number of entries stored in this cache</dd>
|
||||
<dt><?php echo _T('Deleted'); ?>: </dt><dd>Number of entries is pending in delete list (expired but referenced)</dd>
|
||||
<dt><?php echo _T('GC'); ?>: </dt><dd>Seconds count down of Garbage Collection</dd>
|
||||
<dt><?php echo _T('Free Blocks'); ?>: </dt><dd>Free blocks list in the specified cache</dd>
|
||||
</dl>
|
||||
|
||||
<h2><?php echo _T('List Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('entry'); ?>: </dt><dd>The entry name or filename</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>Times this entry is hit (loaded from this cache)</dd>
|
||||
<dt><?php echo _T('Refcount'); ?>: </dt><dd>Reference count of this entry is holded by a php request</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>Size in bytes of this entry in the cache</dd>
|
||||
<dt><?php echo _T('PhpShared'); ?>: </dt><dd>Count of entry sharing this php data</dd>
|
||||
<dt><?php echo _T('SrcSize'); ?>: </dt><dd>Size of the source file</dd>
|
||||
<dt><?php echo _T('Modify'); ?>: </dt><dd>Last modified time of the source file</dd>
|
||||
<dt><?php echo _T('device'); ?>: </dt><dd>device number of the source file</dd>
|
||||
<dt><?php echo _T('inode'); ?>: </dt><dd>inode number of the source file</dd>
|
||||
<dt><?php echo _T('Access'); ?>: </dt><dd>Last access time of the cached entry</dd>
|
||||
<dt><?php echo _T('Create'); ?>: </dt><dd>The time when this entry is stored</dd>
|
||||
<dt>Compiler errors: </dt> <dd><a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt>Readonly protection: </dt> <dd><a href="http://xcache.lighttpd.net/wiki/ReadonlyProtection">ReadonlyProtection</a></dd>
|
||||
</dl>
|
||||
|
@ -1,37 +1,4 @@
|
||||
<h2><?php echo _T('Cache Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('Slots'); ?>: </dt><dd>Hash 槽个数, 对应 php.ini 里的设置</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>共享内存区大小, 单位: 字节</dd>
|
||||
<dt><?php echo _T('Avail'); ?>: </dt><dd>可用内存, 对应共享内存区的剩余内存字节数</dd>
|
||||
<dt><?php echo _T('% Used'); ?>: </dt><dd>百分比, 条状显示可用内存的比例, 以及显示分配块状态</dd>
|
||||
<dt><?php echo _T('Clear'); ?>: </dt><dd>清除按钮, 点击按钮清除对应共享内存区的数据</dd>
|
||||
<dt><?php echo _T('Compiling'); ?>: </dt><dd>编译标记, 当共享内存区正在编译 php 脚本时标记为 "yes"</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>共享内存命中次数, 命中=从该共享内存载入php或者变量</dd>
|
||||
<dt><?php echo _T('Hits/H'); ?>: </dt><dd>每小时命中次数. 只统计最后 24 小时</dd>
|
||||
<dt><?php echo _T('Hits 24H'); ?>: </dt><dd>24 小时命中分布图. 图表现是最后 24 小时的命中次数</dd>
|
||||
<dt><?php echo _T('Hits/S'); ?>: </dt><dd>每秒命中次数. 只统计最后 5 秒</dd>
|
||||
<dt><?php echo _T('Updates'); ?>: </dt><dd>共享内存更新次数</dd>
|
||||
<dt><?php echo _T('Clogs'); ?>: </dt><dd>编译阻塞跳过, 阻塞=当需该共享内存区负责编译时, 其他进程/现成无法访问此共享内存. 跳过=XCache 自动判断阻塞的共享内存区自动跳过阻塞等待, 直接使用非共享内存方式继续处理请求</dd>
|
||||
<dt><?php echo _T('OOMs'); ?>: </dt><dd>内存不足次数, 显示需要存储新数据但是共享内存区内存不足的次数. 如果出现太频繁请考虑加大配置中的 xcache.size 或者 xcache.var_size</dd>
|
||||
<dt><?php echo _T('Errors'); ?>: </dt><dd>编译错误, 显示您的脚本被编译时出错的次数. 如果您发现这个数字不断增长, 您应该检查什么脚本产生错误. 参考 <a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt><?php echo _T('Protected'); ?>: </dt><dd>显示该 Cache 是否支持并启用 <a href="http://xcache.lighttpd.net/xcache/wiki/ReadonlyProtection">readonly_protection</a></dd>
|
||||
<dt><?php echo _T('Cached'); ?>: </dt><dd>共享内存于该共享内存区的项目条数</dd>
|
||||
<dt><?php echo _T('Deleted'); ?>: </dt><dd>共享内存区内将要删除的项目 (已经删除但是还被某些进程占用)</dd>
|
||||
<dt><?php echo _T('GC'); ?>: </dt><dd>垃圾回收的倒计时</dd>
|
||||
<dt><?php echo _T('Free Blocks'); ?>: </dt><dd>共享内存区内的空闲内存块</dd>
|
||||
</dl>
|
||||
|
||||
<h2><?php echo _T('List Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('entry'); ?>: </dt><dd>项目名或者文件名</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>该项目被命中的次数 (从共享内存区载入)</dd>
|
||||
<dt><?php echo _T('Refcount'); ?>: </dt><dd>项目依然被其他进程占据的引用次数</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>项目在共享内存里占用字节数</dd>
|
||||
<dt><?php echo _T('PhpShared'); ?>: </dt><dd>与本项目相同 PHP 代码的个数</dd>
|
||||
<dt><?php echo _T('SrcSize'); ?>: </dt><dd>源文件大小</dd>
|
||||
<dt><?php echo _T('Modify'); ?>: </dt><dd>源文件最后修改时间</dd>
|
||||
<dt><?php echo _T('device'); ?>: </dt><dd>源文件所在设备ID</dd>
|
||||
<dt><?php echo _T('inode'); ?>: </dt><dd>源文件的inode</dd>
|
||||
<dt><?php echo _T('Access'); ?>: </dt><dd>最后访问该项目的时间</dd>
|
||||
<dt><?php echo _T('Create'); ?>: </dt><dd>该项目被创建于共享内的时间</dd>
|
||||
<dt>编译错误: </dt> <dd><a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt>只读保护: </dt> <dd><a href="http://xcache.lighttpd.net/wiki/ReadonlyProtection">ReadonlyProtection</a></dd>
|
||||
</dl>
|
||||
|
@ -1,34 +1,4 @@
|
||||
<h2><?php echo _T('Cache Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('Slots'); ?>: </dt><dd>Hash 槽個數,對應 php.ini 裡的設置</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>共享記憶體區大小,單位:位元</dd>
|
||||
<dt><?php echo _T('Avail'); ?>: </dt><dd>可用記憶體,對應共享記憶體區的剩餘記憶體位元數</dd>
|
||||
<dt><?php echo _T('% Used'); ?>: </dt><dd>百分比,條狀顯示可用記憶體的比例</dd>
|
||||
<dt><?php echo _T('Clear'); ?>: </dt><dd>清除按鈕,點擊按鈕清除對應共享記憶體區的資料</dd>
|
||||
<dt><?php echo _T('Compiling'); ?>: </dt><dd>編譯標記,當共享記憶體區正在編譯 php 指令時標記為 "yes"</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>共享記憶體命中次數,命中=從該共享記憶體載入php或者變數</dd>
|
||||
<dt><?php echo _T('Updates'); ?>: </dt><dd>共享記憶更新過次數</dd>
|
||||
<dt><?php echo _T('Clogs'); ?>: </dt><dd>編譯阻塞跳過,阻塞=當需該共享記憶體區負責編譯時,其他程序/現成無法存取此共享記憶體. 跳過=XCache 自動判斷阻塞的共享記憶體區自動跳過阻塞等待,直接使用非共享記憶體方式繼續處理請求</dd>
|
||||
<dt><?php echo _T('OOMs'); ?>: </dt><dd>記憶體不足次數,顯示需要儲存新資料但是共享記憶體區記憶體不足的次數. 如果出現太頻繁請考慮加大配置中的 xcache.size 或者 xcache.var_size</dd>
|
||||
<dt><?php echo _T('Errors'); ?>: </dt><dd>编译错误, 显示您的脚本被编译时出错的次数. 如果您发现这个数字不断增长, 您应该检查什么脚本产生错误. 参考 <a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt><?php echo _T('Protected'); ?>: </dt><dd>顯示該 Cache 是否支援並啟用 <a href="http://xcache.lighttpd.net/xcache/wiki/ReadonlyProtection">readonly_protection</a></dd>
|
||||
<dt><?php echo _T('Cached'); ?>: </dt><dd>共享記憶體於該共享記憶體區的項目個數</dd>
|
||||
<dt><?php echo _T('Deleted'); ?>: </dt><dd>共享記憶體區內將要刪除的項目 (已經刪除但是還被某些程序佔用)</dd>
|
||||
<dt><?php echo _T('GC'); ?>: </dt><dd>垃圾回收的倒數計時</dd>
|
||||
<dt><?php echo _T('Free Blocks'); ?>: </dt><dd>共享記憶體區內的空閒記憶體區塊</dd>
|
||||
</dl>
|
||||
|
||||
<h2><?php echo _T('List Legends'); ?></h2>
|
||||
<dl>
|
||||
<dt><?php echo _T('entry'); ?>: </dt><dd>項目名稱或者檔案名稱</dd>
|
||||
<dt><?php echo _T('Hits'); ?>: </dt><dd>該項目被命中的次數 (從共享記憶體區載入)</dd>
|
||||
<dt><?php echo _T('Refcount'); ?>: </dt><dd>項目依然被其他程序佔用的引用次數</dd>
|
||||
<dt><?php echo _T('Size'); ?>: </dt><dd>項目在共享記憶體裡佔用位元數</dd>
|
||||
<dt><?php echo _T('PhpShared'); ?>: </dt><dd>與本項目相同 PHP 內容的个數</dd>
|
||||
<dt><?php echo _T('SrcSize'); ?>: </dt><dd>原始檔案大小</dd>
|
||||
<dt><?php echo _T('Modify'); ?>: </dt><dd>原始檔案最後修改時間</dd>
|
||||
<dt><?php echo _T('device'); ?>: </dt><dd>原始檔案所在設備ID</dd>
|
||||
<dt><?php echo _T('inode'); ?>: </dt><dd>原始檔案的inode</dd>
|
||||
<dt><?php echo _T('Access'); ?>: </dt><dd>最後存取該項目的時間</dd>
|
||||
<dt><?php echo _T('Create'); ?>: </dt><dd>該項目被建立於共享內的時間</dd>
|
||||
<dt>编译错误: </dt> <dd><a href="http://www.php.net/manual/en/ref.errorfunc.php#ini.error-log">ini.error-log</a> and <a href="http://cn2.php.net/manual/en/ref.errorfunc.php#ini.display-errors">ini.display-errors</a></dd>
|
||||
<dt>只读保护: </dt> <dd><a href="http://xcache.lighttpd.net/wiki/ReadonlyProtection">ReadonlyProtection</a></dd>
|
||||
</dl>
|
||||
|
Loading…
Reference in new issue