[123] | 1 | <h2><?php echo _T('Cache Legends'); ?></h2> |
---|
| 2 | <dl> |
---|
| 3 | <dt><?php echo _T('Slots'); ?>: </dt><dd>Number of hash slots. the setting from your php.ini</dd> |
---|
| 4 | <dt><?php echo _T('Size'); ?>: </dt><dd>Cache Size, Size of the cache (or cache chunk), in bytes</dd> |
---|
| 5 | <dt><?php echo _T('Avail'); ?>: </dt><dd>Available Memory, free memory in bytes of this cache</dd> |
---|
[539] | 6 | <dt><?php echo _T('% Used'); ?>: </dt><dd>Percent, A bar shows how much memory available in percent, and memory blocks status</dd> |
---|
[123] | 7 | <dt><?php echo _T('Clear'); ?>: </dt><dd>Clear Button, Press the button to clean this cache</dd> |
---|
| 8 | <dt><?php echo _T('Compiling'); ?>: </dt><dd>Compiling flag, "yes" if the cache is busy compiling php script</dd> |
---|
| 9 | <dt><?php echo _T('Hits'); ?>: </dt><dd>Cache Hits, hit=a var/php is loaded from this cache</dd> |
---|
[522] | 10 | <dt><?php echo _T('Hits/H'); ?>: </dt><dd>Average Hits per Hour. Only last 24 hours is logged</dd> |
---|
| 11 | <dt><?php echo _T('Hits 24H'); ?>: </dt><dd>Hits 24 Hours. Hits graph of last 24 hours</dd> |
---|
| 12 | <dt><?php echo _T('Hits/S'); ?>: </dt><dd>Average Hits per Second. Only last 5 seconds is logged</dd> |
---|
[936] | 13 | <dt><?php echo _T('Updates'); ?>: </dt><dd>Cache Updates, miss=a var/php is requested but not in the cache</dd> |
---|
[123] | 14 | <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> |
---|
| 15 | <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> |
---|
[456] | 16 | <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> |
---|
[458] | 17 | <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> |
---|
[123] | 18 | <dt><?php echo _T('Cached'); ?>: </dt><dd>Number of entries stored in this cache</dd> |
---|
| 19 | <dt><?php echo _T('Deleted'); ?>: </dt><dd>Number of entries is pending in delete list (expired but referenced)</dd> |
---|
| 20 | <dt><?php echo _T('GC'); ?>: </dt><dd>Seconds count down of Garbage Collection</dd> |
---|
| 21 | <dt><?php echo _T('Free Blocks'); ?>: </dt><dd>Free blocks list in the specified cache</dd> |
---|
| 22 | </dl> |
---|
| 23 | |
---|
| 24 | <h2><?php echo _T('List Legends'); ?></h2> |
---|
| 25 | <dl> |
---|
| 26 | <dt><?php echo _T('entry'); ?>: </dt><dd>The entry name or filename</dd> |
---|
| 27 | <dt><?php echo _T('Hits'); ?>: </dt><dd>Times this entry is hit (loaded from this cache)</dd> |
---|
[321] | 28 | <dt><?php echo _T('Refcount'); ?>: </dt><dd>Reference count of this entry is holded by a php request</dd> |
---|
[123] | 29 | <dt><?php echo _T('Size'); ?>: </dt><dd>Size in bytes of this entry in the cache</dd> |
---|
[321] | 30 | <dt><?php echo _T('PhpShared'); ?>: </dt><dd>Count of entry sharing this php data</dd> |
---|
[123] | 31 | <dt><?php echo _T('SrcSize'); ?>: </dt><dd>Size of the source file</dd> |
---|
| 32 | <dt><?php echo _T('Modify'); ?>: </dt><dd>Last modified time of the source file</dd> |
---|
| 33 | <dt><?php echo _T('device'); ?>: </dt><dd>device number of the source file</dd> |
---|
| 34 | <dt><?php echo _T('inode'); ?>: </dt><dd>inode number of the source file</dd> |
---|
| 35 | <dt><?php echo _T('Access'); ?>: </dt><dd>Last access time of the cached entry</dd> |
---|
| 36 | <dt><?php echo _T('Create'); ?>: </dt><dd>The time when this entry is stored</dd> |
---|
| 37 | </dl> |
---|