actor-framework / actor-framework/benchmarks

Add Go benchmark

Aperta
#2 1 commento 0 reazioni 0 assegnatari Vedi su GitHub
idea
Lingua principale
C++
Stelle
26
Fork
15
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Descrizione

[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
}
```

Guida per i contributori

Nessuna guida per i contributori indicizzata per questo repository

Valutazione

Questa issue non è ancora stata valutata.

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.