This repository covers various experiments to understand concurrency, multithreading, and parallelism in Go.
Problem Statement: Create a program where multiple goroutines print numbers from different ranges concurrently.
Problem Statement: Modify the previous experiment to ensure all goroutines finish before the main function exits.
Problem Statement: Implement a producer-consumer model using Go channels.
Problem Statement: Demonstrate the difference between buffered and unbuffered channels by implementing a message queue.
Problem Statement: Implement a system where multiple goroutines send messages to different channels, and the select
statement picks available messages.
Problem Statement: Create a shared counter that multiple goroutines increment, leading to a race condition. Then, fix it using sync.Mutex
.
Problem Statement: Implement a program where multiple goroutines read a shared variable while only one can write to it at a time.
Problem Statement: Create a worker pool where a fixed number of goroutines process multiple tasks from a queue.
Problem Statement: Implement a service that runs indefinitely until a timeout is reached, using context.WithTimeout()
.
Problem Statement: Run computationally intensive tasks with different values of runtime.GOMAXPROCS()
and measure performance.
- Clone this repository.
- Navigate to the desired experiment folder.
- Run the Go program using
go run main.go
.
Happy coding! 🚀