More documentation needed
Exactly what does the cache use to store data on disk? Is it CoreData, plain sqlite, even plainer files, is it something else altogether? What are the pros/cons of the system used? The answer to this question belongs in the README.
You are absolutely right.
AwesomeCache uses an instance of
NSCacheas an intermediate (fast access) store. All cache data is additionally persisted to files on disk to keep it around across app launches or in case theNSCacheis automatically purged by the system.
Would something like that be sufficient in your opinion? Do you want more details?
I'd like to see a little bit more info on the structure. But that would be a start. Thanks.
Cool, I think about something and add it to the Readme. Thanks again for the suggestion.