菜鸟教程小白 发表于 2022-12-13 02:32:57

ios - 如何判断 NSURLCache 是否正常工作?


                                            <p><p>我在我的 App Delegate 中配置了内存和磁盘缓存,但似乎没有使用缓存 - 它似乎每次都进入网络。有没有一种简单的方法来检查数据是否被缓存然后在后续请求中检索?我只需要设置缓存吗?我是否需要通过每次调用 cachedResponseForRequest 或类似的方法来明确检查缓存?它在模拟器上工作吗?我的部署目标是 iOS 6。</p>

<p>谢谢。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>几个观察:</p>

<ol>
<li><p>请求必须是可以缓存的(例如 <code>http</code> 或 <code>https</code>,但不是 <code>ftp</code>)。</p ></li>
<li><p>响应必须生成表明可以缓存响应的 header 。值得注意的是,它必须设置<code>Cache-Control</code>。参见 NSHipster 关于 <a href="http://nshipster.com/nsurlcache/" rel="noreferrer noopener nofollow"><code>NSURLCache</code></a> 的讨论.</p>

<p>例如下载图片时</p>

<pre><code>&lt;?php

$filename = &#34;image.jpg&#34;;

$lastModified = filemtime($filename);
$etagFile = md5_file($filename);

header(&#39;Last-Modified: &#39; . gmdate(&#34;D, d M Y H:i:s&#34;, $lastModified) . &#39; GMT&#39;);
header(&#39;Etag: &#34;&#39; . $etagFile . &#39;&#34;&#39;);
header(&#39;Content-Type: image/jpeg&#39;);
header(&#39;Cache-Control: public, max-age=1835400&#39;);
header(&#39;Content-Length: &#39; . filesize($filename));

readfile($filename);

?&gt;
</code></pre> </li>
<li><p>响应必须满足一些记录不充分的规则(例如,响应不能超过总持久性 <code>NSURLCache</code> 的 5%)。例如,您可以在应用代理的 <code>didFinishLaunchingWithOptions</code> 中放置以下内容:</p>

<pre><code>NSURLCache *URLCache = [ initWithMemoryCapacity: 5 * 1024 * 1024
                                                   diskCapacity:20 * 1024 * 1024 diskPath:nil];
;
</code></pre>

<p>这设置了 5mb 的内存缓存和 20mb 的持久缓存。</p></li>
<li><p>为了完整起见,我会明确说明,在创建 <code>NSURLRequest</code> 时,<code>NSURLRequestReloadIgnoringLocalCacheData</code> 的 <code>NSURLRequestCachePolicy</code> 会即使响应之前已缓存,也阻止使用缓存。</p></li>
<li><p>在同样的说明中,返回 <code>nil</code> 的 <code>connection:willCacheResponse:</code> 方法会阻止响应被缓存。</p> </li>
</ol></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 如何判断 NSURLCache 是否正常工作?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/16346945/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/16346945/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 如何判断 NSURLCache 是否正常工作?