DEV Community

Sukma Rizki
Sukma Rizki

Posted on

Concurrency Pattern Pipeline

#go

Discussing concurrency or concurrency in Go programming,
In this chapter we will discuss one of the best practices for concurrency in Go, namely pipelines, which are one of the many concurrencies in Go. Go has several APIs for concurrency purposes, including goroutines and channels. By utilizing existing APIs we can create streaming data pipelines. the benefits are user I/O efficiency and CPU usage efficiency

Top comments (0)