Open subtleGradient opened 1 month ago
Tried forcing root queries to expire ASAP with queryCacheExpirationTime: 1
.
const source = new RecordSource()
const store = new RelayStore(source, {
queryCacheExpirationTime: 1,
})
It successfully causes __gc()
to log zero marked references (indicating that nothing is being retained).
But the LiveState unsubscribe is still never called.
LOG liveSubUnsubTest tick
LOG liveSubUnsubTest tick
LOG liveSubUnsubTest tick
LOG liveSubUnsubTest tick
If references.size === 0
, the entire _recordSource
is cleared using _recordSource.clear()
.
This means that no records, including those with resolver subscriptions, will exist in the store. Consequently, the loop that iterates over storeIDs and checks for maybeResolverSubscription
will never execute, and the subscriptions won't be disposed of properly.
BOOM! Solved it.
If I comment out the references.size === 0
if branch, my LiveState is properly unsubscribed as expected.
// if (references.size === 0) {
// console.debug('(RELAY)', 'RelayModernStore._collect clearing all records - no references');
// this._recordSource.clear();
// } else {
...
// }
PROBLEM: This code bypasses maybeResolverSubscription
seems like we need to call maybeResolverSubscription
sometimes
quick and dirty workaround
const source = new RecordSource()
const store = new RelayStore(source, {
// WARNING: DO NOT REMOVE THIS LINE
// This is a workaround that unbreaks garbage collection in the Relay store
// See https://github.com/facebook/relay/issues/4830 for more info
// Without this, root queries will never be disposed and LiveState values will never unsubscribe
queryCacheExpirationTime: 1,
})
const network = Network.create(fetchOrSubscribe, fetchOrSubscribe)
const env = new Environment({ store, network })
// WARNING: DO NOT REMOVE THIS LINE
// This is a workaround that unbreaks garbage collection in the Relay store
// See https://github.com/facebook/relay/issues/4830 for more info
// RelayModernStore has two branches for clearing the store, one of which is broken
// this line forces the store to use the working branch
// by forcing the store to retain an extra root query
// because the failing branch checks `if (references.size === 0)`
env.retain(createOperationDescriptor(getRequest(graphql`query theRelayEnvironment__DummyQuery($id: ID!) { node(id:$id) { id } }`), { id: ROOT_ID })) // prettier-ignore
related docs: #4831
after unmounting
LiveSubUnsubTestDemo
, I'm still getting the subscription ticks foreverconsole.log("liveSubUnsubTest", "unsubscribe")
is never called