performance - How does Go compile so quickly? -


i've googled , poked around go website, can't seem find explanation go's extraordinary build times. products of language features (or lack thereof), highly optimized compiler, or else? i'm not trying promote go; i'm curious.

dependency analysis.

from go faq:

go provides model software construction makes dependency analysis easy , avoids of overhead of c-style include files , libraries.

that main reason of fast compilation. , design.


Comments

Popular posts from this blog

Is there a better way to structure post methods in Class Based Views -

reflection - How to access the object-members of an object declaration in kotlin -

php - Doctrine Query Builder Error on Join: [Syntax Error] line 0, col 87: Error: Expected Literal, got 'JOIN' -