Skip to content
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

Replace String.format usage with simple string concatenation #18885

Closed
wants to merge 2 commits into from

Conversation

wendigo
Copy link
Contributor

@wendigo wendigo commented Aug 31, 2023

No description provided.

@@ -60,6 +60,8 @@ public class DefaultQueryBuilder
private static final String ALWAYS_TRUE = "1=1";
private static final String ALWAYS_FALSE = "1=0";

private static final Joiner SPACE_JOINER = Joiner.on(' ');
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this seems more like convenience rather than required? You can surely append a trailing space to each line.

I'll look into how Joiner is implemented - maybe I'm overthinking.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is this for performance, perhaps? I don't find it more readable or more convenient...

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actually it is more readable as with the format you need to understand which argument goes where

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Joiner is actually more performant and less garbage generating compared to even concat since it uses good old StringBuilder underneath and some intelligent logic.

Yes, this is for perf.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't underestimate plain concatenation, in Java 9+ it no longer desugars to StringBuilder and uses some INVOKEDYNAMIC magic instead :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

(I'm not blocking this PR, BTW, do what you have to do)

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I tested with a JMH harness, Joiner is still faster.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

wait a sec, my measurements were wrong.

Plain concat is the fastest indeed.
JOINER is MUCH faster than format.
format must be avoided.

So if plain concat preserves readability (it seems to do) then let's use it.

For me joiner won because my JMH was generating random inputs for each method being benchmarked instead of each run having same input.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark                     Mode  Cnt    Score    Error  Units
DifferentConcats.concat       avgt   15  143.218 ±  4.177  ns/op
DifferentConcats.guavaJoiner  avgt   15  398.257 ± 12.523  ns/op
DifferentConcats.formatStr    avgt   15  750.233 ± 16.783  ns/op

There's a steady 2x improvement between each approach.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For this case, readability matters more than performance. How many of these operations are being performed per Trino query?

Copy link
Member

@hashhar hashhar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Soft LGTM.

I'll look at Joiner impl and give a green light/request changes.

Copy link
Member

@hashhar hashhar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@wendigo wendigo closed this Sep 1, 2023
@wendigo wendigo deleted the serafin/replace-string-format branch January 21, 2025 11:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

4 participants