Changeset 1038 for trunk/mod_cacher/htdocs/help-en.lang.php
- Timestamp:
- 2012-07-24T11:08:51+02:00 (10 months ago)
- File:
-
- 1 edited
-
trunk/mod_cacher/htdocs/help-en.lang.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mod_cacher/htdocs/help-en.lang.php
r949 r1038 1 <h2><?php echo _T('Cache Legends'); ?></h2>2 1 <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> 6 <dt><?php echo _T('% Used'); ?>: </dt><dd>Percent, A bar shows how much memory available in percent, and memory blocks status</dd> 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> 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> 13 <dt><?php echo _T('Updates'); ?>: </dt><dd>Cache Updates</dd> 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> 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> 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> 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> 2 <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> 3 <dt>Readonly protection: </dt> <dd><a href="http://xcache.lighttpd.net/wiki/ReadonlyProtection">ReadonlyProtection</a></dd> 22 4 </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>28 <dt><?php echo _T('Refcount'); ?>: </dt><dd>Reference count of this entry is holded by a php request</dd>29 <dt><?php echo _T('Size'); ?>: </dt><dd>Size in bytes of this entry in the cache</dd>30 <dt><?php echo _T('PhpShared'); ?>: </dt><dd>Count of entry sharing this php data</dd>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>
Note: See TracChangeset
for help on using the changeset viewer.

