dotnet / dotnet/efcore

Reuse shapers across queries

Open
#34,445 0 comments 0 reactions 0 assignees View on GitHub
area-aot area-perf area-query consider-for-next-release
Dominant language
C#
Stars
14.8k
Forks
3.4k
PR merge metrics
PR metrics pending

Description

We currently produce a shaper for each query we compile; since as many queries end up having identical shapers, we can have a cache which allows queries to reuse shapers. This would help reduce binary size for NativeAOT, and would also help regular JIT application performance as ew need to compile less shapers at runtime.

This is basically about figuring out the correct, comprehensive cache key for shapers, and implementing the caching.

Note that we also have #32923, which is about reusing **materializers** across queries (with materializers being the narrower piece of code that materializes an instance from DbDataReader, and therefore doesn't care about tracking/no-tracking, split query....). Both caches can be done independently.

Contributor guide

Open the contributing guide

Assessment

This issue has not been assessed yet.

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.