We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
No description provided.
The text was updated successfully, but these errors were encountered:
So, here's an example:
// main.swift let imageCache = MemoryCache<NSData>(countLimit: 50, automaticallyRemoveAllObjects: true) func imageApiCall(key: String, completion: @escaping (NSData) -> ()) { // some expensive code } func fetchImage(key: String, completion: @escaping (NSData) -> ()) { imageCache.get(key: key) { cachedData in if let data = cachedData { completion(data) } else { imageApiCall(key: key) { requestedData in imageCache.set(key: key, value: requestedData) completion(requestedData) } } } }
P.S Here's a class that lets you cache a wider range of objects.
Also, the author is pretty great. Check out this iOS related podcast he did a while back.
Sorry, something went wrong.
No branches or pull requests
No description provided.
The text was updated successfully, but these errors were encountered: