GithubHelp home page GithubHelp logo

Comments (3)

josephsavona avatar josephsavona commented on July 27, 2024 1

So that means that React compiler does not auto memoize everything with the correct dependencies.

No. The compiler does a conservative analysis and uses the correct set of dependencies given the values that are being memoized. In this case, there are two values being memoized together, so we emit the union of their dependencies. That is the only correct thing to do.

There are alternative ways we could memoize — for example, entering, exiting, and re-entering memoization blocks — that have different tradeoffs. We may explore those later, but so far we've found that they have unacceptable tradeoffs such as high code size.

from react.

josephsavona avatar josephsavona commented on July 27, 2024

Thanks for posting. A simplified version of what's going on here is this:

const [data, refetch] = useData();
const y = deepClone(data); // y becomes mutable here
const t0 = <button onClick={refetch}> // this button gets memoized with `y`, so `refetch` becomes a dependency
const t1 = maybeMutate(y);  // y is last mutated here
return <>{t0}{t1}</>;

Ie, the compiler currently sees JSON.stringify(y) and thinks that it could be a mutation of y, and this affects the memoization. We have type declarations that understand the mutability semantics of various built-ins, but haven't added JSON.stringify yet (it's a fairly complex one to type because of the replacer callback). This is definitely on our radar to improve, but this is working as designed. Not memoizing in this way could cause us to miss mutations and produce incorrect results.

I'm going to close this since it's working as designed, but we will be working over time to type more builtins, including JSON.stringify.

from react.

mohebifar avatar mohebifar commented on July 27, 2024

Ok, probably the answer I was looking for is in:

this button gets memoized with y, so refetch becomes a dependency

So that means that React compiler does not auto memoize everything with the correct dependencies.

When you memoize y manually, you'd do:

const y = useMemo(() => deepClone(data), [data]);

while what React compiler does is more equivalent to:

const y = useMemo(() => deepClone(refetch), [data, refetch]); // With refetch also invalidating the memo'd value

This perhaps should be noted in the docs somewhere that you may need to memo by hand in such cases that "precise dependencies" matter.

from react.

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.