Paradigm | Multi-paradigm: concurrent, functional,[1]imperative, object-oriented[2][3] |
---|---|
Designed by | Robert Griesemer Rob Pike Ken Thompson |
Developer | The Go Authors[4] |
First appeared | November 10, 2009 |
Stable release | 1.16.5[5]
/ 3 June 2021 |
Typing discipline | Inferred, static, strong, structural[6][7] |
Implementation language | Go, Assembly language (gc); C++ (gccgo) |
OS | DragonFly BSD, FreeBSD, Linux, macOS, NetBSD, OpenBSD,[8]Plan 9,[9]Solaris, Windows |
License | 3-clause BSD[4] + patent grant[10] |
Filename extensions | .go |
Website | golang |
Major implementations | |
gc, gccgo | |
Influenced by | |
C, Python, Oberon-2, Limbo, Active Oberon, communicating sequential processes, Pascal, Oberon, Smalltalk, Newsqueak, Modula-2, Alef, APL, BCPL, Modula, occam | |
Influenced | |
Odin, Crystal, Zig |
Go is a statically typed, compiled programming language designed at Google[11] by Robert Griesemer, Rob Pike, and Ken Thompson.[12] Go is syntactically similar to C, but with memory safety, garbage collection, structural typing,[6] and CSP-style concurrency.[13] The language is often referred to as Golang because of its domain name, golang.org
, but the proper name is Go.[14]
There are two major implementations:
A third-party source-to-source compiler, GopherJS,[19] compiles Go to JavaScript for front-end web development.
Go was designed at Google in 2007 to improve programming productivity in an era of multicore, networked machines and large codebases.[20] The designers wanted to address criticism of other languages in use at Google, but keep their useful characteristics:[21]
The designers were primarily motivated by their shared dislike of C++.[23][24][25]
Go was publicly announced in November 2009,[26] and version 1.0 was released in March 2012.[27][28] Go is widely used in production at Google[29] and in many other organizations and open-source projects.
In November 2016, the Go and Go Mono fonts were released by type designers Charles Bigelow and Kris Holmes specifically for use by the Go project. Go is a humanist sans-serif which resembles Lucida Grande and Go Mono is monospaced. Each of the fonts adhere to the WGL4 character set and were designed to be legible with a large x-height and distinct letterforms. Both Go and Go Mono adhere to the DIN 1450 standard by having a slashed zero, lowercase l
with a tail, and an uppercase I
with serifs.[30][31]
In April 2018, the original logo was replaced with a stylized GO slanting right with trailing streamlines. However, the Gopher mascot remained the same.[32]
In August 2018, the Go principal contributors published two "draft designs" for new language features, generics and error handling, and asked Go users to submit feedback on them.[33][34] Lack of support for generic programming and the verbosity of error handling in Go 1.x had drawn considerable criticism.
Go 1 guarantees compatibility[35] for the language specification and major parts of the standard library. All versions up to the current Go 1.16 release[36] have maintained this promise.
Each major Go release is supported until there are two newer major releases.[37]
Major version | Initial release date | Language changes[38] | Other changes |
---|---|---|---|
1–1.0.3 | 2012-03-28 | Initial release | |
1.1–1.1.2 | 2013-05-13 |
|
|
1.2–1.2.2 | 2013-12-01 |
|
|
1.3–1.3.3 | 2014-06-18 | There are no language changes in this release. |
|
1.4–1.4.3 | 2014-12-10 |
|
|
1.5–1.5.4 | 2015-08-19 |
Due to an oversight, the rule that allowed the element type to be elided from slice literals was not applied to map keys. This has been corrected in Go 1.5. |
|
1.6–1.6.4 | 2016-02-17 | There are no language changes in this release. |
|
1.7–1.7.6 | 2016-08-15 |
Clarification on terminating statements in the language specification. This does not change existing behaviour. |
|
1.8–1.8.7 | 2017-02-16 |
When explicitly converting a value from one struct type to another, as of Go 1.8 the tags are ignored. Thus two structs that differ only in their tags may be converted from one to the other. |
|
1.9–1.9.7 | 2017-08-24 |
|
The Go compiler now supports compiling a package's functions in parallel, taking advantage of multiple cores. |
1.10–1.10.7 | 2018-02-16 |
|
For the x86 64-bit port, the assembler now supports 359 new instructions, including the full AVX, AVX2, BMI, BMI2, F16C, FMA3, SSE2, SSE3, SSSE3, SSE4.1, and SSE4.2 extension sets. The assembler also no longer implements |
1.11–1.11.6 | 2018-08-24 | There are no language changes in this release. |
|
1.12.1 | 2019-02-25 | There are no language changes in this release. |
|
1.13.1 | 2019-09-03 |
Go now supports a more uniform and modernized set of number literal prefixes |
|
1.14 | 2020-02-25 |
Permits embedding interfaces with overlapping method sets[42] |
Module support in the |
1.15 | 2020-08-11 | There are no language changes in this release. | |
1.16 | 2021-02-16 | There are no language changes in this release. |
|
Go is influenced by C, but with an emphasis on greater simplicity and safety. The language consists of:
select
statement.Go's syntax includes changes from C aimed at keeping code concise and readable. A combined declaration/initialization operator was introduced that allows the programmer to write i := 3
or s := "Hello, world!"
, without specifying the types of variables used. This contrasts with C's int i = 3;
and const char *s = "Hello, world!";
. Semicolons still terminate statements,[a] but are implicit when the end of a line occurs.[b] Methods may return multiple values, and returning a result, err
pair is the conventional way a method indicates an error to its caller in Go.[c] Go adds literal syntaxes for initializing struct parameters by name and for initializing maps and slices. As an alternative to C's three-statement for
loop, Go's range
expressions allow concise iteration over arrays, slices, strings, maps, and channels.[53]
Go has a number of built-in types, including numeric ones (byte, int64, float32, etc.), booleans, and character strings (string). Strings are immutable; built-in operators and keywords (rather than functions) provide concatenation, comparison, and UTF-8 encoding/decoding.[54]Record types can be defined with the struct keyword.[55]
For each type T and each non-negative integer constant n, there is an array type denoted [n]T; arrays of differing lengths are thus of different types. Dynamic arrays are available as "slices", denoted []T for some type T. These have a length and a capacity specifying when new memory needs to be allocated to expand the array. Several slices may share their underlying memory.[56][57][58]
Pointers are available for all types, and the pointer-to-T type is denoted *T. Address-taking and indirection use the & and * operators, as in C, or happen implicitly through the method call or attribute access syntax.[59] There is no pointer arithmetic,[d] except via the special unsafe.Pointer type in the standard library.[60]
For a pair of types K, V, the type map[K]V is the type of hash tables mapping type-K keys to type-V values. Hash tables are built into the language, with special syntax and built-in functions. chan T is a channel that allows sending values of type T between concurrent Go processes.[citation needed]
Aside from its support for interfaces, Go's type system is nominal: the type keyword can be used to define a new named type, which is distinct from other named types that have the same layout (in the case of a struct, the same members in the same order). Some conversions between types (e.g., between the various integer types) are pre-defined and adding a new type may define additional conversions, but conversions between named types must always be invoked explicitly.[61] For example, the type keyword can be used to define a type for IPv4 addresses, based on 32-bit unsigned integers:
type ipv4addr uint32
With this type definition, ipv4addr(x) interprets the uint32 value x as an IP address. Simply assigning x to a variable of type ipv4addr is a type error.[citation needed]
Constant expressions may be either typed or "untyped"; they are given a type when assigned to a typed variable if the value they represent passes a compile-time check.[62]
Function types are indicated by the func keyword; they take zero or more parameters and return zero or more values, all of which are typed. The parameter and return values determine a function type; thus, func(string, int32) (int, error) is the type of functions that take a string and a 32-bit signed integer, and return a signed integer (of default width) and a value of the built-in interface type error.[citation needed]
Any named type has a method set associated with it. The IP address example above can be extended with a method for checking whether its value is a known standard:
// ZeroBroadcast reports whether addr is 255.255.255.255.
func (addr ipv4addr) ZeroBroadcast() bool {
return addr == 0xFFFFFFFF
}
Due to nominal typing, this method definition adds a method to ipv4addr, but not on uint32. While methods have special definition and call syntax, there is no distinct method type.[63]
Go provides two features that replace class inheritance.[citation needed]
The first is embedding, which can be viewed as an automated form of composition[64] or delegation.[65]:255
The second are its interfaces, which provides runtime polymorphism.[66]:266 Interfaces are a class of types and provide a limited form of structural typing in the otherwise nominal type system of Go. An object which is of an interface type is also of another type, much like C++ objects being simultaneously of a base and derived class. Go interfaces were designed after protocols from the Smalltalk programming language.[67] Multiple sources use the term duck typing when describing Go interfaces.[68][69] Although the term duck typing is not precisely defined and therefore not wrong, it usually implies that type conformance is not statically checked. Since conformance to a Go interface is checked statically by the Go compiler (except when performing a type assertion), the Go authors prefer the term structural typing.[70]
The definition of an interface type lists required methods by name and type. Any object of type T for which functions exist matching all the required methods of interface type I is an object of type I as well. The definition of type T need not (and cannot) identify type I. For example, if Shape, Square and Circle are defined as
import "math"
type Shape interface {
Area() float64
}
type Square struct { // Note: no "implements" declaration
side float64
}
func (sq Square) Area() float64 { return sq.side * sq.side }
type Circle struct { // No "implements" declaration here either
radius float64
}
func (c Circle) Area() float64 { return math.Pi * math.Pow(c.radius, 2) }
then both a Square and a Circle are implicitly a Shape and can be assigned to a Shape-typed variable.[66]:263–268 In formal language, Go's interface system provides structural rather than nominal typing. Interfaces can embed other interfaces with the effect of creating a combined interface that is satisfied by exactly the types that implement the embedded interface and any methods that the newly defined interface adds.[66]:270
The Go standard library uses interfaces to provide genericity in several places, including the input/output system that is based on the concepts of Reader and Writer.[66]:282–283
Besides calling methods via interfaces, Go allows converting interface values to other types with a run-time type check. The language constructs to do so are the type assertion,[71] which checks against a single potential type, and the type switch,[72] which checks against multiple types.[citation needed]
The empty interface interface{}
is an important base case because it can refer to an item of any concrete type. It is similar to the Object class in Java or C# and is satisfied by any type, including built-in types like int.[66]:284 Code using the empty interface cannot simply call methods (or built-in operators) on the referred-to object, but it can store the interface{}
value, try to convert it to a more useful type via a type assertion or type switch, or inspect it with Go's reflect
package.[73] Because interface{}
can refer to any value, it is a limited way to escape the restrictions of static typing, like void*
in C but with additional run-time type checks.[citation needed]
The interface{}
type can be used to model structured data of any arbitrary schema in Go, such as JSON or YAML data, by representing it as a map[string]interface{}
(map of string to empty interface). This recursively describes data in the form of a dictionary with string keys and values of any type.[74]
Interface values are implemented using pointer to data and a second pointer to run-time type information.[75] Like some other types implemented using pointers in Go, interface values are nil
if uninitialized.[76]
In Go's package system, each package has a path (e.g., "compress/bzip2"
or "golang.org/x/net/html"
) and a name (e.g., bzip2
or html
). References to other packages' definitions must always be prefixed with the other package's name, and only the capitalized names from other packages are accessible: io.Reader
is public but bzip2.reader
is not.[77] The go get
command can retrieve packages stored in a remote repository [78] and developers are encouraged to develop packages inside a base path corresponding to a source repository (such as example.com/user_name/package_name) to reduce the likelihood of name collision with future additions to the standard library or other external libraries.[79]
Proposals exist to introduce a proper package management solution for Go similar to CPAN for Perl or Rust's cargo system or Node's npm system.[80]
The Go language has built-in facilities, as well as library support, for writing concurrent programs. Concurrency refers not only to CPU parallelism, but also to asynchrony: letting slow operations like a database or network read run while the program does other work, as is common in event-based servers.[81]
The primary concurrency construct is the goroutine, a type of light-weight process. A function call prefixed with the go
keyword starts a function in a new goroutine. The language specification does not specify how goroutines should be implemented, but current implementations multiplex a Go process's goroutines onto a smaller set of operating-system threads, similar to the scheduling performed in Erlang.[82]:10
While a standard library package featuring most of the classical concurrency control structures (mutex locks, etc.) is available,[82]:151–152 idiomatic concurrent programs instead prefer channels, which provide send messages between goroutines.[83] Optional buffers store messages in FIFO order[65]:43 and allow sending goroutines to proceed before their messages are received.[citation needed]
Channels are typed, so that a channel of type chan T can only be used to transfer messages of type T. Special syntax is used to operate on them; <-ch is an expression that causes the executing goroutine to block until a value comes in over the channel ch, while ch <- x sends the value x (possibly blocking until another goroutine receives the value). The built-in switch-like select statement can be used to implement non-blocking communication on multiple channels; see below for an example. Go has a memory model describing how goroutines must use channels or other operations to safely share data.[84]
The existence of channels sets Go apart from actor model-style concurrent languages like Erlang, where messages are addressed directly to actors (corresponding to goroutines). The actor style can be simulated in Go by maintaining a one-to-one correspondence between goroutines and channels, but the language allows multiple goroutines to share a channel or a single goroutine to send and receive on multiple channels.[82]:147
From these tools one can build concurrent constructs like worker pools, pipelines (in which, say, a file is decompressed and parsed as it downloads), background calls with timeout, "fan-out" parallel calls to a set of services, and others.[85] Channels have also found uses further from the usual notion of interprocess communication, like serving as a concurrency-safe list of recycled buffers,[86] implementing coroutines (which helped inspire the name goroutine),[87] and implementing iterators.[88]
Concurrency-related structural conventions of Go (channels and alternative channel inputs) are derived from Tony Hoare's communicating sequential processes model. Unlike previous concurrent programming languages such as Occam or Limbo (a language on which Go co-designer Rob Pike worked),[89] Go does not provide any built-in notion of safe or verifiable concurrency.[90] While the communicating-processes model is favored in Go, it is not the only one: all goroutines in a program share a single address space. This means that mutable objects and pointers can be shared between goroutines; see § Lack of race condition safety, below.[citation needed]
Although Go's concurrency features are not aimed primarily at parallel processing,[81] they can be used to program shared-memory multi-processor machines. Various studies have been done into the effectiveness of this approach.[91] One of these studies compared the size (in lines of code) and speed of programs written by a seasoned programmer not familiar with the language and corrections to these programs by a Go expert (from Google's development team), doing the same for Chapel, Cilk and Intel TBB. The study found that the non-expert tended to write divide-and-conquer algorithms with one go statement per recursion, while the expert wrote distribute-work-synchronize programs using one goroutine per processor. The expert's programs were usually faster, but also longer.[92]
There are no restrictions on how goroutines access shared data, making race conditions possible. Specifically, unless a program explicitly synchronizes via channels or other means, writes from one goroutine might be partly, entirely, or not at all visible to another, often with no guarantees about ordering of writes.[90] Furthermore, Go's internal data structures like interface values, slice headers, hash tables, and string headers are not immune to race conditions, so type and memory safety can be violated in multithreaded programs that modify shared instances of those types without synchronization.[93][94] Instead of language support, safe concurrent programming thus relies on conventions; for example, Chisnall recommends an idiom called "aliases xor mutable", meaning that passing a mutable value (or pointer) over a channel signals a transfer of ownership over the value to its receiver.[82]:155
The linker in the gc toolchain creates statically linked binaries by default; therefore all Go binaries include the Go runtime.[95][96]
Go deliberately omits certain features common in other languages, including (implementation) inheritance, generic programming, assertions,[e]pointer arithmetic,[d]implicit type conversions, untagged unions,[f] and tagged unions.[g] The designers added only those facilities that all three agreed on.[99]
Of the omitted language features, the designers explicitly argue against assertions and pointer arithmetic, while defending the choice to omit type inheritance as giving a more useful language, encouraging instead the use of interfaces to achieve dynamic dispatch[h] and composition to reuse code. Composition and delegation are in fact largely automated by struct embedding; according to researchers Schmager et al., this feature "has many of the drawbacks of inheritance: it affects the public interface of objects, it is not fine-grained (i.e, no method-level control over embedding), methods of embedded objects cannot be hidden, and it is static", making it "not obvious" whether programmers will overuse it to the extent that programmers in other languages are reputed to overuse inheritance.[64]
The designers express an openness to generic programming and note that built-in functions are in fact type-generic, but these are treated as special cases; Pike calls this a weakness that may at some point be changed.[56] The Google team built at least one compiler for an experimental Go dialect with generics, but did not release it.[100] They are also open to standardizing ways to apply code generation.[101] In June 2020, a new draft design document[102] was published, which would add the necessary syntax to Go for declaring generic functions and types. A code translation tool go2go was provided to allow users to try out the new syntax, along with a generics-enabled version of the online Go Playground.[103]
Initially omitted, the exception-like panic/recover mechanism was eventually added, which the Go authors advise using for unrecoverable errors such as those that should halt an entire program or server request, or as a shortcut to propagate errors up the stack within a package (but not across package boundaries; there, error returns are the standard API).[104][105][106][107]
This section possibly contains original research.(January 2018) |
The Go authors put substantial effort into influencing the style of Go programs:
gofmt
tool.[108]golint
does additional style checks automatically.[citation needed]godoc
),[109] testing (go test
), building (go build
), package management (go get
), and so on.map
and Java-style try
/finally
blocks) tends to encourage a particular explicit, concrete, and imperative programming style.The main Go distribution includes tools for building, testing, and analyzing code:
go build
, which builds Go binaries using only information in the source files themselves, no separate makefilesgo test
, for unit testing and microbenchmarksgo fmt
, for formatting codego get
, for retrieving and installing remote packagesgo vet
, a static analyzer looking for potential errors in codego run
, a shortcut for building and executing codegodoc
, for displaying documentation or serving it via HTTPgorename
, for renaming variables, functions, and so on in a type-safe waygo generate
, a standard way to invoke code generatorsIt also includes profiling and debugging support, runtime instrumentation (for example, to track garbage collection pauses), and a race condition tester.
An ecosystem of third-party tools adds to the standard distribution, such as gocode
, which enables code autocompletion in many text editors, goimports
, which automatically adds/removes package imports as needed, and errcheck
, which detects code that might unintentionally ignore errors.
package main
import "fmt"
func main() {
fmt.Println("Hello, world!")
}
where "fmt" is the package for formatted I/O, similar to C's C file input/output.[115]
The following simple program demonstrates Go's concurrency features to implement an asynchronous program. It launches two lightweight threads ("goroutines"): one waits for the user to type some text, while the other implements a timeout. The select statement waits for either of these goroutines to send a message to the main routine, and acts on the first message to arrive (example adapted from David Chisnall book).[82]:152
package main
import (
"fmt"
"time"
)
func readword(ch chan string) {
fmt.Println("Type a word, then hit Enter.")
var word string
fmt.Scanf("%s", &word)
ch <- word
}
func timeout(t chan bool) {
time.Sleep(5 * time.Second)
t <- false
}
func main() {
t := make(chan bool)
go timeout(t)
ch := make(chan string)
go readword(ch)
select {
case word := <-ch:
fmt.Println("Received", word)
case <-t:
fmt.Println("Timeout.")
}
}
The testing package provides support for automated testing of go packages.[116] Target function example:
func ExtractUsername(email string) string {
at := strings.Index(email, "@")
return email[:at]
}
Test code (note that assert keyword is missing in Go; tests live in <filename>_test.go at the same package):
import (
"testing"
)
func TestExtractUsername(t *testing.T) {
t.Run("withoutDot", func(t *testing.T) {
username := ExtractUsername("[email protected]")
if username != "r" {
t.Fatalf("Got: %v\n", username)
}
})
t.Run("withDot", func(t *testing.T) {
username := ExtractUsername("[email protected]")
if username != "jonh.smith" {
t.Fatalf("Got: %v\n", username)
}
})
}
It is possible to run tests in parallel.
The net/http package provides support for creating web applications.
This example would show "Hello world!" when localhost:8080 is visited.
import (
"fmt"
"log"
"net/http"
)
func helloFunc(w http.ResponseWriter, r *http.Request) {
fmt.Fprintf(w, "Hello world!")
}
func main() {
http.HandleFunc("/", helloFunc)
log.Fatal(http.ListenAndServe(":8080", nil))
}
This section relies too much on references to primary sources. (November 2015) |
Some notable open-source applications written in Go include:[117]
Other notable companies and sites using Go (generally together with other languages, not exclusively) include:
See also related query to Wikidata.
The interface system, and the deliberate omission of inheritance, were praised by Michele Simionato, who likened these characteristics to those of Standard ML, calling it "a shame that no popular language has followed [this] particular route".[145]
Dave Astels at Engine Yard wrote:[146]
Go is extremely easy to dive into. There are a minimal number of fundamental language concepts and the syntax is clean and designed to be clear and unambiguous. Go is still experimental and still a little rough around the edges.
Go was named Programming Language of the Year by the TIOBE Programming Community Index in its first year, 2009, for having a larger 12-month increase in popularity (in only 2 months, after its introduction in November) than any other language that year, and reached 13th place by January 2010,[147] surpassing established languages like Pascal. By June 2015, its ranking had dropped to below 50th in the index, placing it lower than COBOL and Fortran.[148] But as of January 2017, its ranking had surged to 13th, indicating significant growth in popularity and adoption. Go was awarded TIOBE programming language of the year 2016.
Bruce Eckel has stated:[149]
The complexity of C++ (even more complexity has been added in the new C++), and the resulting impact on productivity, is no longer justified. All the hoops that the C++ programmer had to jump through in order to use a C-compatible language make no sense anymore -- they're just a waste of time and effort. Go makes much more sense for the class of problems that C++ was originally intended to solve.
A 2011 evaluation of the language and its gc implementation in comparison to C++ (GCC), Java and Scala by a Google engineer found:
Go offers interesting language features, which also allow for a concise and standardized notation. The compilers for this language are still immature, which reflects in both performance and binary sizes.
— R. Hundt[150]
The evaluation got a rebuttal from the Go development team. Ian Lance Taylor, who had improved the Go code for Hundt's paper, had not been aware of the intention to publish his code, and says that his version was "never intended to be an example of idiomatic or efficient Go"; Russ Cox then optimized the Go code, as well as the C++ code, and got the Go code to run slightly faster than C++ and more than an order of magnitude faster than the code in the paper.[151]
On November 10, 2009, the day of the general release of the language, Francis McCabe, developer of the Go! programming language (note the exclamation point), requested a name change of Google's language to prevent confusion with his language, which he had spent 10 years developing.[152] McCabe raised concerns that "the 'big guy' will end up steam-rollering over" him, and this concern resonated with the more than 120 developers who commented on Google's official issues thread saying they should change the name, with some[153] even saying the issue contradicts Google's motto of: Don't be evil.[154]
On October 12, 2010, the issue was closed by Google developer Russ Cox (@rsc) with the custom status "Unfortunate" accompanied by the following comment:
"There are many computing products and services named Go. In the 11 months since our release, there has been minimal confusion of the two languages."[154]
Go critics say that:
Study shows that it is as easy to make concurrency bugs with message passing as with shared memory, sometimes even more.[162]
Go supports ... a functional programming style in a strongly typed language.
Although Go has types and methods and allows an object-oriented style of programming, there is no type hierarchy.
Go is Object Oriented, but not in the usual way.
Go has structural typing, not duck typing. Full interface satisfaction is checked and required.
The language is called Go.
The compiler and runtime are now implemented in Go and assembler, without C.
Ada, Go and Objective-C++ are not default languages
Google has released version 1 of its Go programming language, an ambitious attempt to improve upon giants of the lower-level programming world such as C and C++.
Go 1.13 introduces new features to the errors and fmt standard library packages to simplify working with errors that contain other errors. The most significant of these is a convention rather than a change: an error which contains another may implement an Unwrap method returning the underlying error. If e1.Unwrap() returns e2, then we say that e1 wraps e2, and that you can unwrap e1 to get e2.
Go 1.15 includes a new package, time/tzdata, that permits embedding the timezone database into a program. Importing this package (as import _ "time/tzdata") permits the program to find timezone information even if the timezone database is not available on the local system. You can also embed the timezone database by building with -tags timetzdata. Either approach increases the size of the program by about 800 KB
interface{}
to a reflect.Value
that can be further inspected
In Go the rule about visibility of information is simple: if a name (of a top-level type, function, method, constant or variable, or of a structure field or method) is capitalized, users of the package may see it. Otherwise, the name and hence the thing being named is visible only inside the package in which it is declared.
The packages from the standard library are given short import paths such as "fmt" and "net/http". For your own packages, you must choose a base path that is unlikely to collide with future additions to the standard library or other external libraries. If you keep your code in a source repository somewhere, then you should use the root of that source repository as your base path. For instance, if you have an Example account at example.com/user, that should be your base path
Ruby was optimized for the developer, not for running it in production," says Sid. "For the things that get hit a lot and have to be very performant or that, for example, have to wait very long on a system IO, we rewrite those in Go … We are still trying to make GitLab use less memory. So, we'll need to enable multithreading. When we developed GitLab that was not common in the Ruby on Rails ecosystem. Now it's more common, but because we now have so much code and so many dependencies, it's going to be a longer path for us to get there. That should help; it won't make it blazingly fast, but at least it will use less memory
The advantages of a single, programmatically mandated format for all Go programs greatly outweigh any perceived disadvantages of the particular style.
For example, around 58% of blocking bugs are caused by message passing. In addition to the violation of Go’s channel usage rules (e.g., waiting on a channel that no one sends data to or close), many concurrency bugs are caused by the mixed usage of message passing and other new semantics and new libraries in Go, which can easily be overlooked but hard to detect
By: Wikipedia.org
Edited: 2021-06-18 12:37:21
Source: Wikipedia.org