Giter Site home page Giter Site logo

Comments (10)

jbmaxwell avatar jbmaxwell commented on July 22, 2024 2

Perfect. Super simple. Thanks.

from shallows.

dreymonde avatar dreymonde commented on July 22, 2024

Hi! There was a very similar issue: #7
Check it out and ping me if you’ll still have any questions after it!

from shallows.

jbmaxwell avatar jbmaxwell commented on July 22, 2024

Ah, okay, didn't see that. Thanks.
So, if I wanted to clear a single item, I'm guessing it might be something like: memoryCache.storage[<myKey>] = nil
Yes?

from shallows.

dreymonde avatar dreymonde commented on July 22, 2024

@jbmaxwell yes, that’s right!

from shallows.

jbmaxwell avatar jbmaxwell commented on July 22, 2024

Hmm, has something changed? I can't seem to get .storage at all... I only see asStorage(), but that doesn't support subscripting. I'd actually like to add a function to delete items from both disk and memory storage (in a combined disk+memory storage). How would I do that?

from shallows.

dreymonde avatar dreymonde commented on July 22, 2024

storage exists only for MemoryStorage instances. For DiskStorage, I’m afraid, you’ll need to provide your own solution

from shallows.

jbmaxwell avatar jbmaxwell commented on July 22, 2024

Ah, okay. And I suppose a DiskStorage combined with a MemoryStorage is fundamentally a DiskStorage? (Because my combined MemoryStorage also doesn't have .storage.):

let myMemoryCache = MemoryStorage<Filename, Chord>()
        .combined(with: DiskStorage.main.folder("stuff", in: .cachesDirectory).mapJSONObject(Chord.self))

This also doesn't recognize .storage.

from shallows.

dreymonde avatar dreymonde commented on July 22, 2024

When you perform any kind of transformation (mapping, combining, etc.), the original type information is lost. When you combine MemoryStorage with DiskStorage, you get just abstract Storage<Key, Value>

from shallows.

dreymonde avatar dreymonde commented on July 22, 2024

Check #7 for how to deal with this in certain scenarios

from shallows.

jbmaxwell avatar jbmaxwell commented on July 22, 2024

Okay, I can see what you're doing in MemoryStorage, but I don't understand exactly how I'd do something similar for DiskStorage (or I suppose, for Storage)—your code is beautiful, but terse.
I'll figure out a workaround... Would it work to just remove the disk item, as in DiskStorage's clear() function?
UPDATE: Deleting using fileURL() works for the DiskStorage but, as I expected, the MemoryStorage still has the item... Is there a way to refresh the MemoryStorage, based on the DiskStorage? Or can I get a reference to the MemoryStorage only from a combined Storage? (Wouldn't it be reasonable to have a built-in function to remove items?)

from shallows.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.