Cache icon indicating copy to clipboard operation
Cache copied to clipboard

:package: Nothing but Cache.

Results 30 Cache issues
Sort by recently updated
recently updated
newest added

Why isn't there a way to just delete memory

setObject and DiskConfig MemoryConfig all setted! but it does not work any one

I have the following case: I'm fetching from API, decoding the response to concrete model. After that the model gets store in Cache (HybridStorage). Everything is fine until I'm trying...

let sortedFiles = objects.sorted { if let time1 = $0.resourceValues.contentModificationDate?.timeIntervalSinceReferenceDate, let time2 = $1.resourceValues.contentModificationDate?.timeIntervalSinceReferenceDate { return time1 > time2 } else { return false } } this will remove recent...

Swift is throwing a warning in XCode 13 that ```swift targets: [ .target( name: "Cache", path: "Source", exclude: ["Library/ImageWrapper.swift"]), ``` `ImageWrapper.swift` is not found. I am able to use the...

Try to update cached object: ``` step 1: delete object using **removeObject** step 2: save updated object using **setObject** ``` Every things goes well but the problem appears when try...

i can't be able to create Storage shared object its throw an error id not add transformer, My Disk name is same only change transformer while saving different model in...

Thanks for the great package! it would be great if we can get it via Swift Package Manager 😄

In [Swift 4.2](https://developer.apple.com/documentation/xcode-release-notes/swift-4_2-release-notes-for-xcode-10), the language adopted a [proposal](https://github.com/apple/swift-evolution/blob/master/proposals/0206-hashable-enhancements.md#the-hasher-struct) that, among other things, adds randomness to the output of the `hash(into: )` function implemented by Hashable types. This causes issues when...