文件名称:并行对象缓存TMCache.zip
文件大小:961KB
文件格式:ZIP
更新时间:2022-08-08 01:38:54
开源项目
TMCache 是 Tumblr 公司开发的一个快速,无死锁的并行对象缓存,支持 iOS 和 OS X 系统。示例代码: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); }]; 标签:TMCache