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

Consider adding support for string interning during demarshalling #274

Open
geeknoid opened this issue Mar 13, 2017 · 4 comments
Open

Consider adding support for string interning during demarshalling #274

geeknoid opened this issue Mar 13, 2017 · 4 comments
Labels

Comments

@geeknoid
Copy link

It would be nice if the generated demarshalling code could be made to take advantage of a string interning model. This would lead to potentially faster demarshalling, less GC churn, and better processor caching.

What I'm thinking is to have the demarshalling code call out to the GetString function shown below, rather than just calling string([]byte) directly. This would then make it possible to globally install a new interning-savvy function instead.

package string

type GetStringFunc func([]byte) string

var getString GetStringFunc = func(b []byte) string {
	return string(b)
}

func String(b []byte) string {
	return getString(b)
}

func SetFunc(fn GetStringFunc) {
	getString = fn
}

@awalterschulze
Copy link
Member

Might be worth looking into this pull request
#217
Maybe this also addresses your concern?

@awalterschulze
Copy link
Member

I am closing this because of inactivity, but just comment if you would like it reopened.

@geeknoid
Copy link
Author

geeknoid commented Oct 7, 2017

Sad to close this instead of implementing it :-( Issue #217 does show the inherent value in avoid string excessive string manipulation during demarshalling.

We're about to embark on deep performance work in our project and once all the goofy things are taken care of, I'm sure we'll quickly run into the issue of excessive garbage collection in our code and eliminating allocations will become an important part of improving our perf. Once this happens, I guess we'll send a PR to gogo to implement what this issue is suggesting.

@awalterschulze
Copy link
Member

Looking forward to it. I'll reopen.

@awalterschulze awalterschulze reopened this Oct 7, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants