You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
go test -bench . -benchtime 3s
go test -bench . -benchtime 3s -benchmem
go test -bench . -benchtime 3s -benchmem -memprofile p.out
go test -bench . -benchtime 3s -benchmem -memprofile p.out -gcflags "-newescape=false -m=2"
diff--gita/topics/go/profiling/memcpu/stream.gob/topics/go/profiling/memcpu/stream.goindex d070441f..b9a2a473100644---a/topics/go/profiling/memcpu/stream.go+++b/topics/go/profiling/memcpu/stream.go
@@ -12,7+12,6 @@ package main
import (
"bytes""fmt"-"io"
)
// data represents a table of input and expected output.
@@ -86,19+85,23 @@ funcalgOne(data []byte, find []byte, repl []byte, output*bytes.Buffer) {
size:=len(find)
// Declare the buffers we need to process the stream.-buf:=make([]byte, size)
+buf:=make([]byte, 5)
end:=size-1// Read in an initial number of bytes we need to get started.-ifn, err :=io.ReadFull(input, buf[:end]); err!=nil {
+ifn, err:= input.ReadByte(); err!=nil {
output.Write(buf[:n])
return
}
for {
+varerrerror++buf[end:][0], err= input.ReadByte()
+// Read in one byte from the input stream.-if _, err :=io.ReadFull(input, buf[end:]); err!=nil {
+iferr!=nil {
// Flush the reset of the bytes we have.
output.Write(buf[:end])
@@ -110,7+113,7 @@ funcalgOne(data []byte, find []byte, repl []byte, output*bytes.Buffer) {
output.Write(repl)
// Read a new initial number of bytes.-ifn, err :=io.ReadFull(input, buf[:end]); err!=nil {
+ifn, err:= input.ReadByte(); err!=nil {
output.Write(buf[:n])
return
}