Code Monkey home page Code Monkey logo

Comments (4)

icyJoseph avatar icyJoseph commented on July 21, 2024

Hi,

The cache function from React is scoped to the current request. By definition it won't work as you expect it (as a global cache)

You need to pass the next revalidate option:

fetch(`https://...`, { next: { revalidate: 3600 } })

from next.js.

pepew-le-boss avatar pepew-le-boss commented on July 21, 2024

I'm not looking for a global cache like the NextJS Data Cache (what you're suggesting). I'm looking for request memoization like the React Cache.

from next.js.

icyJoseph avatar icyJoseph commented on July 21, 2024

Aha, yeah I had missed the bit about shallow equality on the arguments passed to cache. Though you say:

Because the cache function needs to have only primitives as parameters

But the docs you link to say:

If your arguments are not primitives (ex. objects, functions, arrays), ensure you’re passing the same object reference.

So you can in turn, use cache to memoize the creation of the init argument, see #63298 (comment) - since you can also use the cache to store a computation, it is not limited to just requests.

from next.js.

pepew-le-boss avatar pepew-le-boss commented on July 21, 2024

So you're suggesting to use a Map to store the init object inside so I get the same reference of the init object ?

from next.js.

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.