Skip to content

Commit 201af81

Browse files
authored
Release pooled cache reference in complete/unwind (#22464)
1 parent 95ecd4a commit 201af81

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

packages/react-reconciler/src/ReactFiberCacheComponent.new.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,16 @@ export function popRootCachePool(root: FiberRoot, renderLanes: Lanes) {
9999
return;
100100
}
101101
// The `pooledCache` variable points to the cache that was used for new
102-
// cache boundaries during this render, if any. Stash it on the root so that
103-
// parallel transitions may share the same cache. We will clear this field
104-
// once all the transitions that depend on it (which we track with
105-
// `pooledCacheLanes`) have committed.
102+
// cache boundaries during this render, if any. Move ownership of the
103+
// cache to the root so that parallel transitions may share the same
104+
// cache. We will clear this field once all the transitions that depend
105+
// on it (which we track with `pooledCacheLanes`) have committed.
106106
root.pooledCache = pooledCache;
107107
if (pooledCache !== null) {
108108
root.pooledCacheLanes |= renderLanes;
109109
}
110+
// set to null, conceptually we are moving ownership to the root
111+
pooledCache = null;
110112
}
111113

112114
export function restoreSpawnedCachePool(

packages/react-reconciler/src/ReactFiberCacheComponent.old.js

+6-4
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,16 @@ export function popRootCachePool(root: FiberRoot, renderLanes: Lanes) {
9999
return;
100100
}
101101
// The `pooledCache` variable points to the cache that was used for new
102-
// cache boundaries during this render, if any. Stash it on the root so that
103-
// parallel transitions may share the same cache. We will clear this field
104-
// once all the transitions that depend on it (which we track with
105-
// `pooledCacheLanes`) have committed.
102+
// cache boundaries during this render, if any. Move ownership of the
103+
// cache to the root so that parallel transitions may share the same
104+
// cache. We will clear this field once all the transitions that depend
105+
// on it (which we track with `pooledCacheLanes`) have committed.
106106
root.pooledCache = pooledCache;
107107
if (pooledCache !== null) {
108108
root.pooledCacheLanes |= renderLanes;
109109
}
110+
// set to null, conceptually we are moving ownership to the root
111+
pooledCache = null;
110112
}
111113

112114
export function restoreSpawnedCachePool(

0 commit comments

Comments
 (0)