Golang - Tutorial
Golang - Tutorial
Golang
• History
▫ Started in 2007 by Google
▫ Open and stable version in 2012 Tony Hoare (1934-?)
Turing Award in 1980
▫ Go is based on CSP
▫ CSP
Communicating Sequential Processes
Created by Hoare in 1978
A formal language for describing patterns of interaction in concurrent
systems
Occam and Erlang are two well known languages that stem from CSP
One of the most successful models for providing high-level linguistic
support for concurrency
Paradigm for expressing concurrency based on message-passing
Models of concurrency: message passing (with processes, messages no shared
data) instead of shared memory (with threads, locks, mutexes)
Motivation to create Go
• Started as an answer to software problems at Google:
▫ multicore processors
▫ networked systems
▫ massive computation clusters
▫ scale:
10⁷ lines of code
10³ programmers
10⁶ machines
• Goals at Google:
▫ To eliminate the slowness of software development
▫ To make the process more productive and scalable
▫ Go was designed by and for people who develop large
software systems
Go deals with concurrency!
• Go provides two important concepts:
• A trivial solution
Note: A monitor is a shared object with operations (e.g. set data, get data),
internal state, and a number of condition queues. Only one operation of a
given monitor may be active at a given point in time. A process that calls a busy
monitor is delayed until the monitor is free.
Example: Producer-Consumer in Go
• https://play.golang.org/p/a_HBATTBu54
• With explanation: https://gist.github.com/drio/dd2c4ad72452e3c35e7e
▫ For producer
Buffered channels are best closed by producers
The channel close event is signaled to the consumers
You can not write to closed channels
▫ For consumer
If there are items yet to be popped off, the popping off happens as usual.
When the queue is empty and closed, the read will not block. It returns “zero-
value” of the channel item type.
OR
Example: Producer-Consumer in Go
• Original:
https://play.golang.org/p/a_HBATTBu54
▫ A possible answer
Producer close the channel after his
production
Consumer consumes everything in buffer,
but it knows when it is empty and closed
To keep ‘consume’ as goroutine, it needs to
inform the ‘main’ when finishing (idea
similar to ‘done’ channel)
https://play.golang.org/p/B0tLTKJzbhX
Other benefits of Go
• Goroutines have growable segmented stacks
▫ It means they will use more memory only when
needed.
• Go is compiled language.
▫ It means performance is almost nearer to lower level
languages.
Install Go
• Install:
▫ http://golang.org/doc/install.html
• IDEs
Editores de texto
CONCURRENC Y