4

我在使用同步调用缓存 NSURLConnection 响应时遇到问题。我在一个类中初始化缓存,然后在另一个类中使用它。请注意高速缓存容量如何被初始化为 100KB,但随后又神奇地重置为零。

- (id)init {
    if (self = [super init]) {
         // Creates a custom URL cache that uses both memory and disk.
         NSURLCache *sharedCache = 
         [[NSURLCache alloc] initWithMemoryCapacity:kMemoryCacheSize * 1000000 
         diskCapacity:kDiskCacheSize * 1000000 
         diskPath:diskPath];
         [NSURLCache setSharedURLCache:sharedCache];

        NSLog(@"Cache memory capacity = %d bytes", [[NSURLCache sharedURLCache] memoryCapacity]);
        NSLog(@"Cache disk capacity = %d bytes", [[NSURLCache sharedURLCache] diskCapacity]);

        //[sharedCache release];
    }
    return self;
}
// NSLOG OUTPUT:
// [6842:20b] Cache memory capacity = 100000 bytes
// [6842:20b] Cache disk capacity = 20000000 bytes

在另一个班级...

NSLog(@"Cache memory capacity = %d bytes", [[NSURLCache sharedURLCache] memoryCapacity]);
NSLog(@"Cache disk capacity = %d bytes", [[NSURLCache sharedURLCache] diskCapacity]);
NSLog(@"Cache Memory Usage = %d bytes", [[NSURLCache sharedURLCache] currentMemoryUsage]);
NSLog(@"Cache Disc Usage = %d bytes", [[NSURLCache sharedURLCache] currentDiskUsage]);
NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:objectURL cachePolicy:NSURLRequestReturnCacheDataElseLoad timeoutInterval:20];
data = [NSURLConnection sendSynchronousRequest:request returningResponse:&response error:&error];
NSLog(@"Image Request finished. Error = %@",[error localizedDescription]);
NSLog(@"Cache size after = %d bytes", [[NSURLCache sharedURLCache] currentMemoryUsage]);
// NSLog Output:
// Cache memory capacity = 0 bytes
// Cache Disc Usage = 0 bytes
// Cache Memory Usage = 0 bytes
// Cache disk capacity = 20000000 bytes
// Image Request finished. Error = (null)
// Cache size after = 0 bytes
4

3 回答 3

4

我在带有 webviews 的应用程序中遇到了这个问题。出于某种原因,当 webviews 初始化它们时,它们会将缓存归零,不知道为什么。在这样的应用程序中,我使用 NSURLCache 子类忽略对 setMemoryCapacity 的调用:如果它们为零。

就像是:

-(void)setMemoryCapacity:(NSUInteger)memCap
{
    if (memCap == 0)
        return;
   [super setMemoryCapacity:memCap];
}
于 2010-10-02T23:26:10.393 回答
1

我会将“%p”和 [NSURLCache sharedURLCache] 添加到您的 NSLog 语句中,以确保共享对象保持不变。然后我会为 +[NSURLCache setSharedURLCache:] 和 -[NSURLCache setMemoryCapacity:] 添加断点,看看发生了什么。

于 2010-01-28T09:06:01.450 回答
0

这里有同样的问题。思想缓存根本不起作用。在设置一个没有 UIWebView 的小型测试项目后,[NSURLCache sharedURLCache] memoryCapacity] 返回预期的 10000000 而不是 0。

幸运的是缓存不会被清除,所有以前缓存的对象都将保留。所以道格的解决方案就像一个魅力!

顺便说一句:一旦显示 web 视图,大小将设置为零。之后将其设置回 10000000,显示 Web 视图不会再次将大小设置为零。

于 2011-05-26T12:54:16.743 回答