https://github.com/jmbarzee/team
Proof of concept for lightweight worker pattern
https://github.com/jmbarzee/team
channels fan fan-in fan-out golang proof-of-concept workers
Last synced: 3 months ago
JSON representation
Proof of concept for lightweight worker pattern
- Host: GitHub
- URL: https://github.com/jmbarzee/team
- Owner: jmbarzee
- Created: 2017-02-26T18:09:48.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-01-10T21:21:39.000Z (over 7 years ago)
- Last Synced: 2025-01-06T03:41:44.725Z (5 months ago)
- Topics: channels, fan, fan-in, fan-out, golang, proof-of-concept, workers
- Language: Go
- Homepage:
- Size: 134 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Team Pattern Written in GoLang
This is a simple fan-out/fan-in, worker pattern, used as a proof of concept and teaching tool.
The highlight of this repository is the use of Go's Channels in building effective concurency designs allowing for parallelismExample: ```go get github.com/jmbarzee/teamdemo```
To Use
1. [Install golang](https://golang.org/dl/)
2. ```go get github.com/jmbarzee/team```
3. import ```github.com/jmbarzee/team``` in desired location
4.