エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Why is NSURLSession don't use my configured NSURLCache?
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Why is NSURLSession don't use my configured NSURLCache?
Seems like there are two potential issues: Your cache is too small. Historically, it wouldn't cac... Seems like there are two potential issues: Your cache is too small. Historically, it wouldn't cache if the item being cached exceeded 10% of the total cache size. You're checking the disk usage 0.5 seconds after the last request. That might be too soon for the cache to be written to persistent storage. Below I use a bigger cache and wait 10 seconds before final check of disk usage, and the cache w