文件名称:并行对象缓存PINCache.zip
文件大小:1.14MB
文件格式:ZIP
更新时间:2022-08-05 08:41:05
开源项目
PINCache 是 Pinterest 公司开发的一个快速,无死锁的并行对象缓存,支持 iOS 和 OS X 系统, 是 TMCache 的改进版本。示例代码:UIImage *img = [[UIImage alloc] initWithData:data scale:[[UIScreen mainScreen] scale]];[[PINCache sharedCache] setObject:img forKey:@"image" block:nil]; // returns immediately[[PINCache sharedCache] objectForKey:@"image" block:^(PINCache *cache, NSString *key, id object) { UIImage *image = (UIImage *)object; NSLog(@"image scale: %f", image.scale); }]; 标签:PINCache