-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
117 lines (97 loc) · 1.41 KB
/
main.go
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
package main
import (
"fmt"
"io"
"strings"
"sync"
"sync/atomic"
"testing"
"time"
)
type MySlice []string
func (s MySlice) String() string {
return strings.Join(s, "+")
}
func main() {
m := MySlice{"1", "2", "3"}
s := clone(m)
fmt.Println(s)
}
func clone[S ~[]E, E any](s S) S {
return s
}
// 1, 1, 2, 3, 5, 8, 13
func fibonacci(c, quit chan int) {
x, y := 0, 1
for {
select {
case c <- x:
x, y = y, x+y
case <-quit:
return
}
}
}
func fibonacciV2(n uint) uint {
if n < 2 {
return n
}
return fibonacciV2(n-1) + fibonacciV2(n-2)
}
func doRequest() bool {
time.Sleep(time.Millisecond * 50)
return true
}
func handle() {
time.Sleep(time.Second)
}
func read(r io.Reader) (int, error) {
var count int64
wg := sync.WaitGroup{}
n := 10
ch := make(chan []byte, n)
wg.Add(n)
for i := 0; i < n; i++ {
go func() {
defer wg.Done()
for b := range ch {
v := task(b)
atomic.AddInt64(&count, v)
}
}()
}
for {
b := make([]byte, 1024)
_, err := r.Read(b)
if err == io.EOF {
break
}
ch <- b
}
close(ch)
wg.Wait()
return int(count), nil
}
func task(b []byte) int64 {
return 1
}
type watcher struct {
}
func (w watcher) watch() {
}
func (w watcher) close() {
// close all resource
}
func newWatcher() watcher {
w := watcher{}
go w.watch()
return w
}
func BenchMarkFoo(b *testing.B) {
for i := 0; i < b.N; i++ {
foo()
}
}
func foo() string {
return "foo"
}