-
-
Notifications
You must be signed in to change notification settings - Fork 276
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
Accelerating scc startup speed with code generation #594
base: master
Are you sure you want to change the base?
Conversation
Yes the slower to run startup due to the lack of the lazy loading is one of those things I wanted to check. Ill have a look through this because its something I have wanted for a while, especially since it removes the need for 3rd parties to call the process constants method. |
Yes. And if you want to dig in, then you may take a closer look at the two files in the "scripts" directory. It's a simple code generator based on golang's template engine, which is enough for string and bool fields. |
98e2495
to
335d2ff
Compare
@boyter |
Neat. Being lazy paid off for me then. Have been slammed at work so have not had a chance to look through this yet. When I get a moment ill run it through the benchmarks to ensure it covers all bases and then if all good merge. |
335d2ff
to
defee39
Compare
defee39
to
1748071
Compare
Rebased. |
Ah thanks for that. I will be looking at this in depth next week. Just no time this week sorry. |
1748071
to
2969f9e
Compare
We skip the JSON serialization and convert the data directly into Go code, which saves considerable startup time.
"scc --languages" is now 40% faster:

Running on a small code base can gain 7% improvements and on big code bases it could be 1~3%:

Pros:
Cons:
languageDatabase
is not required, because now the language data will always be loaded at startup. For examplescc --help
is 10% slower than before. However, there are only very few scenarios that don't require language data.If you prefer compressed JSON data, that's fine. This code generator is only my weekend DIY :)