-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add resultCacheMaxSize #8107
Merged
benjamn
merged 4 commits into
apollographql:release-3.4
from
sofianhn:clear-cache-on-eviction-main
May 5, 2021
Merged
add resultCacheMaxSize #8107
Changes from 3 commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const optimism = jest.requireActual('optimism'); | ||
module.exports = { | ||
...optimism, | ||
wrap: jest.fn(optimism.wrap), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -80,11 +80,62 @@ type ExecSubSelectedArrayOptions = { | |
export interface StoreReaderConfig { | ||
cache: InMemoryCache, | ||
addTypename?: boolean; | ||
resultCacheMaxSize?: number; | ||
} | ||
|
||
export class StoreReader { | ||
// cached version of executeSelectionset | ||
private executeSelectionSet: OptimisticWrapperFunction< | ||
[ExecSelectionSetOptions], // Actual arguments tuple type. | ||
ExecResult, // Actual return type. | ||
// Arguments type after keyArgs translation. | ||
[SelectionSetNode, StoreObject | Reference, ReadMergeModifyContext]>; | ||
|
||
// cached version of executeSubSelectedArray | ||
private executeSubSelectedArray: OptimisticWrapperFunction< | ||
[ExecSubSelectedArrayOptions], | ||
ExecResult<any>, | ||
[ExecSubSelectedArrayOptions]>; | ||
|
||
constructor(private config: StoreReaderConfig) { | ||
this.config = { addTypename: true, ...config }; | ||
|
||
this.executeSelectionSet = wrap(options => this.execSelectionSetImpl(options), { | ||
Comment on lines
100
to
+103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I don't think these initializations make sense to move to an |
||
keyArgs(options) { | ||
return [ | ||
options.selectionSet, | ||
options.objectOrReference, | ||
options.context, | ||
]; | ||
}, | ||
max: this.config.resultCacheMaxSize, | ||
// Note that the parameters of makeCacheKey are determined by the | ||
// array returned by keyArgs. | ||
makeCacheKey(selectionSet, parent, context) { | ||
if (supportsResultCaching(context.store)) { | ||
return context.store.makeCacheKey( | ||
selectionSet, | ||
isReference(parent) ? parent.__ref : parent, | ||
context.varString, | ||
); | ||
} | ||
} | ||
}); | ||
|
||
this.executeSubSelectedArray = wrap((options: ExecSubSelectedArrayOptions) => { | ||
return this.execSubSelectedArrayImpl(options); | ||
}, { | ||
max: this.config.resultCacheMaxSize, | ||
makeCacheKey({ field, array, context }) { | ||
if (supportsResultCaching(context.store)) { | ||
return context.store.makeCacheKey( | ||
field, | ||
array, | ||
context.varString, | ||
); | ||
} | ||
} | ||
}); | ||
} | ||
|
||
/** | ||
|
@@ -152,33 +203,6 @@ export class StoreReader { | |
return false; | ||
} | ||
|
||
// Cached version of execSelectionSetImpl. | ||
private executeSelectionSet: OptimisticWrapperFunction< | ||
[ExecSelectionSetOptions], // Actual arguments tuple type. | ||
ExecResult, // Actual return type. | ||
// Arguments type after keyArgs translation. | ||
[SelectionSetNode, StoreObject | Reference, ReadMergeModifyContext] | ||
> = wrap(options => this.execSelectionSetImpl(options), { | ||
keyArgs(options) { | ||
return [ | ||
options.selectionSet, | ||
options.objectOrReference, | ||
options.context, | ||
]; | ||
}, | ||
// Note that the parameters of makeCacheKey are determined by the | ||
// array returned by keyArgs. | ||
makeCacheKey(selectionSet, parent, context) { | ||
if (supportsResultCaching(context.store)) { | ||
return context.store.makeCacheKey( | ||
selectionSet, | ||
isReference(parent) ? parent.__ref : parent, | ||
context.varString, | ||
); | ||
} | ||
} | ||
}); | ||
|
||
// Uncached version of executeSelectionSet. | ||
private execSelectionSetImpl({ | ||
selectionSet, | ||
|
@@ -330,21 +354,6 @@ export class StoreReader { | |
|
||
private knownResults = new WeakMap<Record<string, any>, SelectionSetNode>(); | ||
|
||
// Cached version of execSubSelectedArrayImpl. | ||
private executeSubSelectedArray = wrap((options: ExecSubSelectedArrayOptions) => { | ||
return this.execSubSelectedArrayImpl(options); | ||
}, { | ||
makeCacheKey({ field, array, context }) { | ||
if (supportsResultCaching(context.store)) { | ||
return context.store.makeCacheKey( | ||
field, | ||
array, | ||
context.varString, | ||
); | ||
} | ||
} | ||
}); | ||
|
||
// Uncached version of executeSubSelectedArray. | ||
private execSubSelectedArrayImpl({ | ||
field, | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks to this change, resetting the cache now dumps
this.storeReader
and all other result-caching-related data, and replaces them with empty data structures.