Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mrinalxdev/worker-pool
creates a pattern where multiple goroutines performs tasks and sends result to a single channel
https://github.com/mrinalxdev/worker-pool
Last synced: about 7 hours ago
JSON representation
creates a pattern where multiple goroutines performs tasks and sends result to a single channel
- Host: GitHub
- URL: https://github.com/mrinalxdev/worker-pool
- Owner: mrinalxdev
- Created: 2024-07-23T08:36:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-07-23T17:59:05.000Z (4 months ago)
- Last Synced: 2024-07-23T21:01:37.674Z (4 months ago)
- Language: Go
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Distributed Task Processing System
This project implements a distributed task processing system using Golang's concurrency features. It demonstrates a worker pool pattern where multiple process jobs concurrently, showcasing Golang's powerful and channels.
## Key Features
- Concurrent job processing
- Scalable worker pool
- Configurable number of workers and jobs
- Proper synchronization to prevent race conditions