actor-framework / actor-framework/benchmarks
Add Go benchmark
Ouverte
idea
- Langage dominant
- C++
- Étoiles
- 26
- Forks
- 15
- Métriques de merge des PR
- Aucune PR mergée en 30 j
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
}
```
Guide de contribution
Aucun guide de contribution indexé pour ce dépôt
Évaluation
Cette issue n'a pas encore été évaluée.