package
0.0.0-20240905231625-fc3702090ddc
Repository: https://github.com/realwebdev/go-cookbook.git
Documentation: pkg.go.dev

# README

Buffers in Golang

"Buffering is a technique used to improve the performance of I/O operations by temporarily storing data in memory before reading or writing it. Instead of reading or writing data one byte at a time, a buffered reader or writer reads or writes data in larger chunks, reducing the overhead of system calls."

go official buffer doc

Guide

clone the using command: git clone <http/ssh>

run command: go run main.go