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

Fmt optimizations #175

Open
quasilyte opened this issue Feb 1, 2022 · 0 comments
Open

Fmt optimizations #175

quasilyte opened this issue Feb 1, 2022 · 0 comments

Comments

@quasilyte
Copy link
Owner

Some fmt-related optimizations ideas.

Note: measure/benchmark before adding these rules.

Removing outer concats, doing 1 bigger alloc with sprintf:

fmt.Sprintf("%s:%d", filename, line) + ": " + message
// =>
fmt.Sprintf("%s:%d: %s", filename, line, message)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant