-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathintro-to-go.slide
182 lines (113 loc) · 3.42 KB
/
intro-to-go.slide
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
Introduction To Go
June 24 2014
James Bowes
Developer, GoInstant
@jrbowes
* Hot Tip
- Always google for *golang*
* What is Go?
* Go is Gophers!
.image https://pbs.twimg.com/media/BmcLZPdCAAAbcVo.jpg
* Go is:
- imperative
- compiled
- strongly and statically typed
* Static typing? Ewww!
Type inferrence makes static types okay.
.code infer.go
* More Niceties
* No Semicolons; Fewer brackets
.play -edit simpleif.go
* Multi-value returns
.play multivalue.go
* Loops
There is only `for`
for {
fmt.Println("printing this forever")
}
for cursor.HasNext() {
row := cursor.Next()
// process results
}
for int i := 0; i < len(list); i++ {
}
* Range
Easy slice and map iteration
.play range.go
* Defer
Execute a statement before returning from a function, regardless of exit path.
.code defer.go
* Style
There is One True Formatting style for Go. It is enforced by `go fmt`.
Unused imports and variables are compiler errors.
Without the choice, you can focus on writing great code!
* Concurrency
* What Is Concurrency?
Concurrency is when two tasks can start, run, and complete in overlapping time
periods. It doesn't necessarily mean they'll ever both be running at the same
instant. Eg. multitasking on a single-core machine.
.link http://stackoverflow.com/a/1050257/1205715
* Concurrency Is Not Parallelism
Parallelism implies execution at literally the same time, on different cores,
processors, or systems.
Concurrency exists without parallelism.
* Go Provides Concurrency, And Takes Advantage Of Paralleism
Go's built-in scheduler runs lightweight threads on available processors in
conjunction with a "hidden" async I/O model.
* Goroutines
Like threads, but lightweight in both syntax and resources used.
.play goroutineprint.go /START OMIT/,/END OMIT/
* Goroutines
Goroutines stop when the called function exits. You cannot stop a goroutine
from another Goroutine.
* Don't communicate by sharing memory; share memory by communicating.
* Channels
Like Unix pipes.
- Signal completion to other Goroutines
- Give "work" to Goroutines
- Shut down other Goroutines
* Channels (II)
Signal completion
c := make(chan int) // Allocate a channel.
// Start the sort in a goroutine; when it completes, signal on the channel.
go func() {
list.Sort()
c <- 1 // Send a signal; value does not matter.
}()
doSomethingForAWhile()
<-c // Wait for sort to finish; discard sent value.
* Channels (III)
Workers
.play workers.go /START OMIT/,/END OMIT/
* Channels (IV)
Shut down other Goroutines
.code shutdown.go /START OMIT/,/END OMIT/
* Structs
// Timer handles triggering event emission, and coordination between Storage
// and the Sender
type Timer struct {
Shutdown // Timer embeds the Shutdown struct. Think inheritance.
timerRunning bool
timer *time.Timer
nextSend time.Time
m *sync.Mutex
sendFunc SendFunc
}
* Methods
// Stop gracefully stops the timer, ensuring any running processing is complete.
func (t *Timer) Stop() {
close(t.shutdown)
t.Pause()
}
You can define a method on any type, not just structs!
* Interfaces
Interfaces are implicit; if a datatype implements the methods of an interface,
it implements that interface. No `implements` keyword!
// Sender describes the interface for sending delayd entries after their time
// has lapsed.
type Sender interface {
Send(e Entry) (err error)
}
* Interfaces (II)
.code amqpsender.go
* Go forth and code!