Pratik Jagrut
Pratik Jagrut

Pratik Jagrut

Follow
Follow
homeGobadges
Tag

Go Language

#go

More content

Read more stories on Hashnode


Articles with this tag

Go GraphQL Go!!!

Aug 16, 202322 min read1.2K views

A beginner's guide to GraphQL in Go using Ent. · Have you ever wondered how computers and applications communicate with each other to fetch information?...

Go GraphQL Go!!!

Concurrency in Go (Part-3): sync package primitives

Apr 9, 20235 min read241 views

Cond, Once and Pool primitives · Cond Sometimes, goroutines need to wait for some data or some kind of signal to be available before executing further....

Concurrency in Go (Part-3): sync package primitives

Concurrency in Go (Part-2): sync package primitives

Apr 6, 20238 min read329 views

WaitGroup, Mutex & RWMutex Primitives · Introduction Go is primarily designed around Communicating Sequential Processes i.e using channels and select...

Concurrency in Go (Part-2): sync package primitives

Concurrency in Go (Part-1): Goroutines, Channels and Select

Mar 15, 202310 min read455 views

Introduction Concurrency, asynchronous, parallel and threaded are some keywords we see floating around when we talk about running multiple processes...

Concurrency in Go (Part-1): Goroutines, Channels and Select

Error Handling in Go (Part-2)

Nov 19, 20229 min read95 views

Creating errors with errors.New() function If we don't need a custom type for an error, and we can work with a single error type then we can use...

Error Handling in Go (Part-2)

Error Handling in Go (Part-1)

Nov 11, 20227 min read96 views

Error is a result of unexpected circumstances or abnormal behaviour of the program. For example, a network connection error, a user entering incorrect...

Error Handling in Go (Part-1)