-
Notifications
You must be signed in to change notification settings - Fork 2k
Document EnableServiceProviderCaching and UseMemoryCache configuration in EF Core #5116
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
base: live
Are you sure you want to change the base?
Conversation
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
samples/core/Miscellaneous/CachingConfiguration/CachingConfiguration.csproj
Outdated
Show resolved
Hide resolved
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
…arios Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
@copilot Update the PR description with a summary of the changes |
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Updated the PR description with a comprehensive summary of the changes, including what was documented, the technical details, and the documentation structure. |
- Better performance for applications that create many `DbContext` instances | ||
- Lower memory overhead when multiple contexts share configurations | ||
|
||
**When to disable caching**: You might want to disable service provider caching (`false`) for testing environments to ensure each test gets a fresh service provider, or when `DbContext` configurations change dynamically at runtime. |
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.
**When to disable caching**: You might want to disable service provider caching (`false`) for testing environments to ensure each test gets a fresh service provider, or when `DbContext` configurations change dynamically at runtime. | |
**When to disable caching**: You might want to disable service provider caching (`false`) for testing environments to ensure each test gets a fresh service provider when `DbContext` configurations change test-to-test. |
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.
Updated the guidance in commit 705ef58 to focus on testing environments where DbContext
configurations change test-to-test.
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Co-authored-by: AndriySvyryd <6539701+AndriySvyryd@users.noreply.github.com>
Summary
This PR adds comprehensive documentation for EF Core's memory caching configuration options, specifically
EnableServiceProviderCaching
andUseMemoryCache
. The documentation explains where these features are used, what the defaults are, and when to customize them.What's Documented
EnableServiceProviderCaching
true
) - service providers are cached and reused acrossDbContext
instances with the same configurationDbContext
configurations change test-to-testDbContext
instancesUseMemoryCache / Memory Cache Integration
IMemoryCache
used by EF Core for internal caching operations like query compilation and model buildingIMemoryCache
with a default size limit of 10240AddMemoryCache
if you need to change the default size limitsIMemoryCache
is not used for internal service provider caching (separate feature)Documentation Changes
Updated Files
EnableServiceProviderCaching
andUseMemoryCache
to the DbContext configuration options table## EnableServiceProviderCaching
section with complete explanation of service provider caching## Memory Cache Integration
section explainingIMemoryCache
configurationDocumentation Structure
##
heading level for clear organizationKey Technical Details
Fixes #4855
Original prompt
💡 You can make Copilot smarter by setting up custom instructions, customizing its development environment and configuring Model Context Protocol (MCP) servers. Learn more Copilot coding agent tips in the docs.