mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
191 lines
8.1 KiB
HTML
191 lines
8.1 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Retrieves information about files cached in the session cache</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.wincache-scache-info" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">wincache_scache_info</h1>
|
|
<p class="verinfo">(PECL wincache >= 1.1.0)</p><p class="refpurpose"><span class="refname">wincache_scache_info</span> — <span class="dc-title">
|
|
Retrieves information about files cached in the session cache
|
|
</span></p>
|
|
|
|
</div>
|
|
<div class="refsect1 description" id="refsect1-function.wincache-scache-info-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>wincache_scache_info</strong></span>
|
|
([ <span class="methodparam"><span class="type">bool</span> <code class="parameter">$summaryonly</code><span class="initializer"> = <strong><code>FALSE</code></strong></span></span>
|
|
] ) : <span class="type">array</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
Retrieves information about session cache content and its usage.
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.wincache-scache-info-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">summaryonly</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
Controls whether the returned array will contain information about individual cache entries
|
|
along with the session cache summary.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.wincache-scache-info-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Array of meta data about session cache 或者在失败时返回 <strong><code>FALSE</code></strong>
|
|
</p>
|
|
<p class="para">
|
|
The array returned by this function contains the following elements:
|
|
<ul class="itemizedlist">
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>total_cache_uptime</em> - total time in seconds that the session cache has been active
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>total_item_count</em> - total number of elements that are currently in the session cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>is_local_cache</em> - true is the cache metadata is for a local cache instance,
|
|
false if the metadata is for the global cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>total_hit_count</em> - number of times the data has been served from the cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>total_miss_count</em> - number of times the data has not been found in the cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<p class="para">
|
|
<em>scache_entries</em> - an array that contains the information about all the cached items:
|
|
<ul class="itemizedlist">
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>key_name</em> - name of the key which is used to store the data
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>value_type</em> - type of value stored by the key
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>use_time</em> - time in seconds since the file has been accessed in the opcode cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>last_check</em> - time in seconds since the file has been checked for modifications
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>ttl_seconds</em> - time remaining for the data to live in the cache, 0 meaning infinite
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>age_seconds</em> - time elapsed from the time data has been added in the cache
|
|
</span>
|
|
</li>
|
|
<li class="listitem">
|
|
<span class="simpara">
|
|
<em>hitcount</em> - number of times data has been served from the cache
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
</li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
<div class="refsect1 examples" id="refsect1-function.wincache-scache-info-examples">
|
|
<h3 class="title">范例</h3>
|
|
<p class="para">
|
|
<div class="example" id="example-618">
|
|
<p><strong>Example #1 A <span class="function"><strong>wincache_scache_info()</strong></span> example</strong></p>
|
|
<div class="example-contents">
|
|
<div class="phpcode"><pre><span style="color: #000000">
|
|
<pre><br /><span style="color: #0000BB"><?php<br />print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">wincache_scache_info</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?><br /></span></pre></span>
|
|
</pre></div>
|
|
</div>
|
|
|
|
<div class="example-contents"><p>以上例程会输出:</p></div>
|
|
<div class="example-contents screen">
|
|
<div class="cdata"><pre>
|
|
Array
|
|
(
|
|
[total_cache_uptime] => 17357
|
|
[total_file_count] => 121
|
|
[total_hit_count] => 36562
|
|
[total_miss_count] => 201
|
|
[scache_entries] => Array
|
|
(
|
|
[1] => Array
|
|
(
|
|
[file_name] => c:\inetpub\wwwroot\checkcache.php
|
|
[add_time] => 17356
|
|
[use_time] => 7
|
|
[last_check] => 10
|
|
[hit_count] => 454
|
|
[function_count] => 0
|
|
[class_count] => 1
|
|
)
|
|
[2] => Array (...iterates for each cached file)
|
|
)
|
|
)
|
|
</pre></div>
|
|
</div>
|
|
</div>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.wincache-scache-info-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="wincache_fcache_fileinfo.html" class="function" rel="rdfs-seeAlso">wincache_fcache_fileinfo()</a> - Retrieves information about files cached in the file cache</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_fcache_meminfo.html" class="function" rel="rdfs-seeAlso">wincache_fcache_meminfo()</a> - Retrieves information about file cache memory usage</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_ocache_meminfo.html" class="function" rel="rdfs-seeAlso">wincache_ocache_meminfo()</a> - Retrieves information about opcode cache memory usage</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_rplist_fileinfo.html" class="function" rel="rdfs-seeAlso">wincache_rplist_fileinfo()</a> - Retrieves information about resolve file path cache</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_rplist_meminfo.html" class="function" rel="rdfs-seeAlso">wincache_rplist_meminfo()</a> - Retrieves information about memory usage by the resolve file path cache</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_refresh_if_changed.html" class="function" rel="rdfs-seeAlso">wincache_refresh_if_changed()</a> - Refreshes the cache entries for the cached files</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_ucache_meminfo.html" class="function" rel="rdfs-seeAlso">wincache_ucache_meminfo()</a> - Retrieves information about user cache memory usage</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_ucache_info.html" class="function" rel="rdfs-seeAlso">wincache_ucache_info()</a> - Retrieves information about data stored in the user cache</span></li>
|
|
<li class="member"><span class="function"><a href="wincache_scache_meminfo.html" class="function" rel="rdfs-seeAlso">wincache_scache_meminfo()</a> - Retrieves information about session cache memory usage</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |