Adam Gent

Results 419 comments of Adam Gent

@arnaudroger > When I benchmarked sfm vs roma https://serkan-ozal.github.io/spring-jdbc-roma/ - that uses preprocessing - surprisingly sfm end up being faster because it can use number lookup instead of column name...

@lukaseder I was reluctant to file an issue as I hadn’t yet setup an isolated performance test and I wanted to sensitive to your time (particularly because we are not...

@rbygrave > For example, pretty sure I tried this back in the day, where the use case was that I wanted to read all the META-INF/services files for a specific...

My gut feeling is that will just add to even more confusion and bugs filed (whether they are real bugs or not is kind of irrelevant. Unless the user is...

It should work across modules. I suspect the companion kotlin object has issues. Can you try a Java class for the formatter?

You can override the accessor. I will say records were not really designed for that. Like the accessors should be the same but I to use records all the time...

The big problem in my book is the potential future of withers if one relies on static factory methods and or the fact that records unlike in say something like...

Yes and what I'm saying is you sadly may want to put that logic of external input normalization somewhere else especially if it gets complicated because you are more likely...

Regular Records are doing the right thing at the moment with nullness and any type. `@NonNull` over `@Nullable` is a more specific and narrow type sort of like a subtype...

Oh I probably do need to keep it separated for now because it targets JDK 21.