uTools-Manuals/docs/php/apcu_cache_info.html
2019-04-08 23:22:26 +08:00

165 lines
5.5 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 cached information from APCu's data store</title>
</head>
<body class="docs"><div id="layout">
<div id="layout-content"><div id="function.apcu-cache-info" class="refentry">
<div class="refnamediv">
<h1 class="refname">apcu_cache_info</h1>
<p class="verinfo">(PECL apcu &gt;= 4.0.0)</p><p class="refpurpose"><span class="refname">apcu_cache_info</span> &mdash; <span class="dc-title">
Retrieves cached information from APCu&#039;s data store
</span></p>
</div>
<div class="refsect1 description" id="refsect1-function.apcu-cache-info-description">
<h3 class="title">说明</h3>
<div class="methodsynopsis dc-description">
<span class="methodname"><strong>apcu_cache_info</strong></span>
([ <span class="methodparam"><span class="type">bool</span> <code class="parameter">$limited</code><span class="initializer"> = <strong><code>FALSE</code></strong></span></span>
] ) : <span class="type">array</span></div>
<p class="para rdfs-comment">
Retrieves cached information and meta-data from APC&#039;s data store.
</p>
</div>
<div class="refsect1 parameters" id="refsect1-function.apcu-cache-info-parameters">
<h3 class="title">参数</h3>
<p class="para">
<dl>
<dt>
<code class="parameter">limited</code></dt>
<dd>
<p class="para">
If <code class="parameter">limited</code> is <strong><code>TRUE</code></strong>, the
return value will exclude the individual list of cache entries. This
is useful when trying to optimize calls for statistics gathering.
</p>
</dd>
</dl>
</p>
</div>
<div class="refsect1 returnvalues" id="refsect1-function.apcu-cache-info-returnvalues">
<h3 class="title">返回值</h3>
<p class="para">
Array of cached data (and meta-data) 或者在失败时返回 <strong><code>FALSE</code></strong>
</p>
<blockquote class="note"><p><strong class="note">Note</strong>:
<span class="simpara">
<span class="function"><strong>apcu_cache_info()</strong></span> will raise a warning if it is unable to
retrieve APC cache data. This typically occurs when APC is not enabled.
</span>
</p></blockquote>
</div>
<div class="refsect1 changelog" id="refsect1-function.apcu-cache-info-changelog">
<h3 class="title">更新日志</h3>
<p class="para">
<table class="doctable informaltable">
<thead>
<tr>
<th>版本</th>
<th>说明</th>
</tr>
</thead>
<tbody class="tbody">
<tr>
<td>3.0.11</td>
<td>
The <code class="parameter">limited</code> parameter was introduced.
</td>
</tr>
<tr>
<td>3.0.16</td>
<td>
The &quot;<em>filehits</em>&quot; option for the
<code class="parameter">cache_type</code> parameter was introduced.
</td>
</tr>
</tbody>
</table>
</p>
</div>
<div class="refsect1 examples" id="refsect1-function.apcu-cache-info-examples">
<h3 class="title">范例</h3>
<p class="para">
<div class="example" id="example-415">
<p><strong>Example #1 A <span class="function"><strong>apcu_cache_info()</strong></span> example</strong></p>
<div class="example-contents">
<div class="phpcode"><pre><span style="color: #000000">
<span style="color: #0000BB">&lt;?php<br />print_r</span><span style="color: #007700">(</span><span style="color: #0000BB">apcu_cache_info</span><span style="color: #007700">());<br /></span><span style="color: #0000BB">?&gt;</span>
</span>
</pre></div>
</div>
<div class="example-contents"><p>以上例程的输出类似于:</p></div>
<div class="example-contents screen">
<div class="cdata"><pre>
Array
(
[num_slots] =&gt; 2000
[ttl] =&gt; 0
[num_hits] =&gt; 9
[num_misses] =&gt; 3
[start_time] =&gt; 1123958803
[cache_list] =&gt; Array
(
[0] =&gt; Array
(
[filename] =&gt; /path/to/apcu_test.php
[device] =&gt; 29954
[inode] =&gt; 1130511
[type] =&gt; file
[num_hits] =&gt; 1
[mtime] =&gt; 1123960686
[creation_time] =&gt; 1123960696
[deletion_time] =&gt; 0
[access_time] =&gt; 1123962864
[ref_count] =&gt; 1
[mem_size] =&gt; 677
)
[1] =&gt; Array (...iterates for each cached file)
)
</pre></div>
</div>
</div>
</p>
</div>
<div class="refsect1 seealso" id="refsect1-function.apcu-cache-info-seealso">
<h3 class="title">参见</h3>
<p class="para">
<ul class="simplelist">
<li class="member"><a href="apcu.configuration.html" class="link">APCu configuration directives</a></li>
<li class="member"><span class="methodname"><a href="apcuiterator.gettotalsize.html" class="methodname" rel="rdfs-seeAlso">APCUIterator::getTotalSize()</a> - Get total cache size</span></li>
<li class="member"><span class="methodname"><a href="apcuiterator.gettotalhits.html" class="methodname" rel="rdfs-seeAlso">APCUIterator::getTotalHits()</a> - Get total cache hits</span></li>
<li class="member"><span class="methodname"><a href="apcuiterator.gettotalcount.html" class="methodname" rel="rdfs-seeAlso">APCUIterator::getTotalCount()</a> - Get total count</span></li>
</ul>
</p>
</div>
</div></div></div></body></html>