Coder Social home page Coder Social logo

Comments (2)

Xiphe avatar Xiphe commented on May 18, 2024

That's an interesting question! And I would like to take some time for discussion and to think about this before presenting a possible "goto" solution.


Here's whats coming to mind. (I don't have time to fully validate this right now, will do in the coming days)

Adding null or undefined as option for the Entry is definitely the way to go. But currently that would also store these values in cache and only revalidate them once their TTL is over. If that's what you intend you're good to go 👍

A scenario that is not possible right now (I think) would be when you want to NOT store the missing null in cache and have getFreshValues try to get them again asap.

from cachified.

Xiphe avatar Xiphe commented on May 18, 2024

I've added/updated two sections about this to the readme and added the functionality to fine-tune cache-metadata in batch requests in the latest release v3.2.0.

see Fine-tuning cache metadata based on fresh values (This was already possible but not well documented, though this does not use createBatch the concept will also apply there)

I've also updated Batch requesting values to show the new onValue callback.


With this in mind here's what I'd do.

  • First and foremost, yes you want to add null, undefined or similar to the array you're expecting from the Promise.all
  • If you want to cache the information that you received an empty values exactly the same as the non-empty values, you don't need anything else.

If you want to not cache empty values or cache them for a much shorter time do something like this:

const batch = createBatch((ids): Promise<(string | null)[]> => {
  /* ... */
});

const values: (string | null)[] = await Promise.all(
  ids.map((id) =>
    cachified({
      /* cache and other options... */
      key: `entry-${id}`,
      ttl: 60_000,
      getFreshValue: batch.add(id, ({ value, metadata }) => {
        if (value === null) {
          /* -1 disables caching, you could also just set to a shorter time */
          metadata.ttl = -1;
        }
      }),
    })
  )
);

from cachified.

Related Issues (20)

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.