-
Notifications
You must be signed in to change notification settings - Fork 244
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
Enable DapperAOT #2079
base: main
Are you sure you want to change the base?
Enable DapperAOT #2079
Conversation
- enable Dapper.AOT - enable command caching - enable strict type mapping - use explicit column hints
@@ -21,6 +21,7 @@ public Db(AppSettings appSettings) | |||
#endif | |||
} | |||
|
|||
[DapperAot, CacheCommand, StrictTypes, QueryColumns("id", "message")] | |||
public async Task<List<Fortune>> LoadFortunesRowsDapper() |
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.
do we want to have both DapperAOT and Dapper variants? Aren't we losing "plain" Dapper testing here?
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.
I didn't want to double everything, and I don't think we need to retain both - the key thing here is "what approach would the user be using?", and DapperAOT === Dapper from that angle.
crank results, sadly, have been somewhat underwhelming, with the performance staying more or less unchanged; marginally faster, but in the 3rd digit, so: not worth discussing. But whelmed or not, it is in the right direction and improves the tech stack - we could if we wanted try running those in AOT mode, for example. Perhaps more importantly, we've identified a few more places where the bottleneck isn't. I have some ideas there, relating to the (optional, disabled) multiplexed npgsql core, and how that could be improved to achieve the results that are currently lacking. |
To explain the changes a bit more, let's take this example: + [DapperAot, CacheCommand, StrictTypes, QueryColumns("id", "message")]
|
In particular, this avoids a lot of memory churn, due to both the ref-emit Dapper usage and the
DbCommand
pooling.Local measurements, before
after (same workload):
The
string
allocations here are presumably somewhere in the core ofNpgsql
- columns or other metadata; removing this would require digging. It isn't strictly required, as Dapper.AOT with this setup does not query any names / string-values.There is some additional work we could perhaps do to use
NpgsqlCommandParameter<T>
to avoid the boxedSystem.Int32
; this would requires some Dapper.AOT tweaks.