A clone of EGOCache, but with the added method:
- (NSTimeInterval)ageForKey:(NSString *)key;
This method makes it possible to create a "rolling cache", exactly as we do with the LastFm library in Last.fm's Scrobbler for iOS app.
GVCache was created with a new name so a CocoaPods podspec could be shared independently from EGOCache.
EGOCache has added a new dateForKey:
method since I've created GVCache. I would thus suggest that you'd use EGOCache.
EGOCache is a simple, thread-safe key value cache store. It has native support for NSString, UI/NSImage, and NSData, but can store anything that implements . All cached items expire after the timeout, which by default, is one day.