[Repo Assist] perf: cache Type.GetType calls in VerifyResultsetColumns#454
Draft
github-actions[bot] wants to merge 2 commits intomasterfrom
Draft
Conversation
Eliminates repeated Type.GetType reflection calls during result set verification by caching resolved types in a ConcurrentDictionary. Before: Type.GetType was called for every column in every result set on every query execution when runtime verification is enabled. After: Type resolution happens once per unique type name and is cached for subsequent queries. Impact: Significantly reduces reflection overhead in verification path, especially for queries with many columns or high execution frequency. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
23 tasks
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
🤖 This is an automated PR from Repo Assist.
Summary
VerifyResultsetColumnsis called on everyExecute/AsyncExecutewhen runtime verification is enabled. It previously calledType.GetType(typeFullName, throwOnError = true)for every column in every result set on every execution, causing significant reflection overhead.Root Cause
In
ISqlCommand.fsline 265, the verification loop resolved types on each iteration:For a query returning 10 columns executed 1000 times, this meant 10,000 calls to
Type.GetType— an expensive operation that involves assembly loading and type lookup.Fix
Added a static
ConcurrentDictionary(string, Type)cache (typeCache) to memoize type resolution:The cache is thread-safe and shared across all command instances in the process.
Impact
Typereferences for types already in useTest Status
Build: ✅
dotnet build src/SqlClient/SqlClient.fsproj -f netstandard2.0succeeds (only pre-existing deprecation warnings).Full integration tests require a SQL Server instance and could not be run in this environment. The change is a pure caching optimization with no logic change; existing tests will verify correctness.
Related
Complements PR #448 (TVP reflection caching). Together, these eliminate all hot-path reflection calls in
ISqlCommand.fs.