actor-framework / actor-framework/benchmarks
Add Go benchmark
Open
idea
- Dominant language
- C++
- Stars
- 26
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
[Go](http://golang.org/) qualifies as another benchmark candidate: Goroutines are the equivalent of actors. They become non-blocking when used with buffered channels (though only until the buffer is full). Pattern matching occurs with the switch statement on a value read from a channel:
```
val := <- someChannel
switch val.(type) {
case int: // some code
case float32: // some code
}
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.